DefinitelyTyped/types/it-all/tsconfig.json
2019-12-18 09:52:10 -08:00

26 lines
577 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"esnext",
"esnext.asynciterable"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"esModuleInterop": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"it-all-tests.ts"
]
}