| { | |
| "extends": "./tsconfig.base.json", | |
| "files": ["app.js"], | |
| "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", | |
| "typeRoots": ["./typings", "./node_modules/@types"], | |
| /* Other options */ | |
| "allowJs": true | |
| } | |
| } |