1234567891011121314151617181920212223242526 |
- {
- "compilerOptions": {
- "module": "commonjs",
- "target": "es6",
- "outDir": "out",
- "lib": [
- "es6"
- ],
- "sourceMap": true,
- "rootDir": "src",
- "strict": true,
- "noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true,
- "noUnusedParameters": true,
- "noImplicitAny": true,
- "removeComments": true,
- "noUnusedLocals": true,
- "noImplicitThis": true,
- "inlineSourceMap": false,
- "preserveConstEnums": true,
- "strictNullChecks": true
- },
- "exclude": [
- "node_modules", "tmp"
- ]
- }
|