12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "compilerOptions": {
- //"allowUnreachableCode": true,
- //"noUnusedLocals": false,
- //"noUnusedParameters": false,
- "removeComments": false,
- "preserveConstEnums": true,
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true,
- "sourceMap": true,
- "declaration": true,
- "noImplicitAny": true,
- "noImplicitReturns": true,
- "noImplicitThis": true,
- "noFallthroughCasesInSwitch": true,
- "suppressImplicitAnyIndexErrors": true,
- "strictNullChecks": true,
- "importHelpers": true,
- "skipLibCheck": true,
- "outDir": "build/commonjs",
- "module": "commonjs",
- "target": "es5",
- "moduleResolution": "node",
- "lib": ["es2015", "dom"],
- "typeRoots": [
- "typings",
- "node_modules/@types"
- ]
- },
- "formatCodeOptions": {
- "indentSize": 2,
- "tabSize": 2
- },
- "exclude": [
- "node_modules",
- "dist"
- ],
- "include": [
- "src"
- ]
- }
|