mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-21 13:27:15 +08:00
* Add "noImplicitThis" to all tsconfig.json * Use `"noImplicitThis": false` on packages with broken tests.
24 lines
549 B
JSON
24 lines
549 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"memory-fs-tests.ts",
|
|
"lib/join-tests.ts",
|
|
"lib/join.d.ts",
|
|
"lib/normalize-tests.ts",
|
|
"lib/normalize.d.ts"
|
|
]
|
|
} |