|
| 1 | +{ |
| 2 | + "compilerOptions": { |
| 3 | + //// Linting Options - Uncomment options to get more features (usually more restrictive) |
| 4 | + "strict": true, |
| 5 | + "strictNullChecks": true, |
| 6 | + "noUnusedLocals": true, |
| 7 | + "noUnusedParameters": true, |
| 8 | + "noImplicitReturns": true, |
| 9 | + "noImplicitAny": true, |
| 10 | + "noImplicitThis": true, |
| 11 | + "noFallthroughCasesInSwitch": true, |
| 12 | + //// Compilation options |
| 13 | + "declaration": true, |
| 14 | + "emitDecoratorMetadata": true, |
| 15 | + "experimentalDecorators": true, |
| 16 | + "incremental": true, |
| 17 | + // "preserveConstEnums": true, |
| 18 | + "sourceMap": true, |
| 19 | + "inlineSourceMap": false, |
| 20 | + "inlineSources": false, |
| 21 | + "preserveSymlinks": true, |
| 22 | + "removeComments": true, |
| 23 | + // |
| 24 | + "jsx": "react", |
| 25 | + "jsxFactory": "etch.dom", |
| 26 | + // |
| 27 | + "lib": ["ES2018", "dom"], |
| 28 | + "target": "ES2018", |
| 29 | + // |
| 30 | + "allowJs": true, |
| 31 | + "esModuleInterop": true, |
| 32 | + "module": "commonjs", |
| 33 | + "moduleResolution": "node", |
| 34 | + // "noLib": false, |
| 35 | + "importHelpers": false, |
| 36 | + // if true you should add tslib to deps |
| 37 | + // "skipLibCheck": false, |
| 38 | + "outDir": "../dist" |
| 39 | + }, |
| 40 | + "compileOnSave": false |
| 41 | +} |
0 commit comments