mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-11 19:42:23 +08:00
* Use features from typescript 2.0 in estree Enables narrowing of types based on doing string literal comparisons with the type field. This makes estree much more natural to use, with fewer casts needed. * Consistently use Array<T> over T[] * Whitespace tweak
20 lines
397 B
JSON
20 lines
397 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"estree-tests.ts"
|
|
]
|
|
}
|