|
12345678910111213141516171819202122232425262728 |
- {
- "compilerOptions": {
- "target": "es2015",
- "module": "commonjs",
- "lib": ["dom", "es2015"],
- "inlineSourceMap": false,
- "outDir": "./dist",
- "rootDir": "./src",
- "moduleResolution": "node",
- "skipLibCheck": true,
- "removeComments": true,
- "noImplicitAny": true,
- "strictNullChecks": true,
- "strictFunctionTypes": true,
- "noImplicitThis": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true,
- "allowSyntheticDefaultImports": true,
- "esModuleInterop": true,
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true,
- "resolveJsonModule": true
- },
- "exclude": ["node_modules"],
- "files": ["./src/main.ts"]
- }
|