DefinitelyTyped/types/boolify-string/tsconfig.json

25 lines
514 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
2020-02-26 00:28:40 +00:00
"strictNullChecks": true,
2017-10-06 21:03:03 +00:00
"strictFunctionTypes": true,
2016-05-09 20:52:25 +00:00
"baseUrl": "../",
"typeRoots": [
2016-05-10 19:24:49 +00:00
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"boolify-string-tests.ts"
]
2020-02-26 00:28:40 +00:00
}