DefinitelyTyped/types/assert/tsconfig.json
ExE Boss 00a3593da3
feat(assert): Add support for TypeScript 3.7 assertion functions (#41927)
Co-Authored-By: Linus Unnebäck <linus@folkdatorn.se>

Co-authored-by: Linus Unnebäck <linus@folkdatorn.se>
2020-02-03 16:06:27 -08:00

20 lines
446 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": ["es2015"],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": ["../"],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"assert-tests.ts",
"index.d.ts"
]
}