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

{
"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,
"esModuleInterop": true,
"paths": {
"*": ["./@types/*"]
},
"typeRoots": [
"./node_modules/@types",
"./@types"
],
"outDir": "./bin"
},
"include": ["src/**/*"]
}