1234567891011121314151617181920212223242526 |
- {
- "compileOnSave": false,
- "compilerOptions": {
- "declaration": false,
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true,
- "lib": [
- "es2017",
- "dom"
- ],
- "moduleResolution": "node",
- "noFallthroughCasesInSwitch": true,
- "noImplicitAny": true,
- "noImplicitReturns": true,
- "noImplicitThis": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "outDir": "./dist/out-tsc",
- "sourceMap": true,
- "strictNullChecks": true,
- "target": "es5",
- "typeRoots": [
- "node_modules/@types"
- ]
- }
- }
|