This repository has been archived on 2022-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
zeropod/tsconfig.json

27 lines
570 B
JSON
Raw Normal View History

2022-04-19 17:17:19 -05:00
{
"compilerOptions": {
"allowJs": false,
"checkJs": false,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
2022-04-19 17:26:04 -05:00
"esModuleInterop": true,
2022-04-19 17:17:19 -05:00
"paths": {
2022-04-19 17:26:04 -05:00
"*": ["./@types/*"]
2022-04-19 17:17:19 -05:00
},
"typeRoots": [
"./node_modules/@types",
"./@types"
2022-04-19 17:26:04 -05:00
],
"outDir": "./bin"
2022-04-19 17:17:19 -05:00
},
"include": ["src/**/*"]
}