Definitions for array-foreach (#12536)

* Definitions for array-foreach

* update tsconfig as per PR

* update as per PR
This commit is contained in:
Steve
2016-11-13 09:26:51 +00:00
committed by Masahiro Wakame
parent 2c90c48e39
commit 727d0517ab
3 changed files with 79 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"noImplicitAny": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"array-foreach-tests.ts"
]
}