| 12345678910111213141516171819202122232425262728293031 |
- {
- "compileOnSave": false,
- "compilerOptions": {
- "baseUrl": "./",
- "outDir": "./dist/out-tsc",<% if (strict) { %>
- "noImplicitAny": true,
- "noImplicitReturns": true,
- "noImplicitThis": true,
- "noFallthroughCasesInSwitch": true,
- "strictNullChecks": true,<% } %>
- "sourceMap": true,
- "declaration": false,
- "downlevelIteration": true,
- "experimentalDecorators": true,
- "module": "esnext",
- "moduleResolution": "node",
- "importHelpers": true,
- "target": "es2015",
- "typeRoots": [
- "node_modules/@types"
- ],
- "lib": [
- "es2018",
- "dom"
- ]
- },
- "angularCompilerOptions": {
- "fullTemplateTypeCheck": true,
- "strictInjectionParameters": true
- }
- }
|