| { |
| "extends": "./tsconfig.base.json", |
| "files": ["app.js", "compiler-args-app.ts"], |
| "include": ["**/*.js", "**/*.ts"], |
| "exclude": ["out", "test", "etc", "examples", "static", "**/*.d.ts"], |
| "compilerOptions": { |
| /* Module resolution */ |
| "target": "esnext", |
| "module": "esnext", |
| "moduleResolution": "node", |
| /* Code generation */ |
| "outDir": "./out/dist", |
| "paths": { |
| "node-targz": ["./typings/node-targz.d.ts"] |
| }, |
| "typeRoots": ["./typings", "./node_modules/@types"], |
| "types": ["mocha", "chai", "chai-http"], |
| /* Other options */ |
| "allowJs": true |
| } |
| } |