1234567891011121314151617181920212223242526272829303132333435 |
- {
- "compileOnSave": true,
- "compilerOptions": {
- "outDir": "./dist",
- "target": "es2017",
- "module": "commonjs",
- "strict": true,
- "noImplicitAny": false,
- "allowJs": true,
- "alwaysStrict": true,
- "noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true,
- "allowUnreachableCode": true,
- "allowUnusedLabels": true,
- "strictNullChecks": true,
- "checkJs": true,
- "declaration": false,
- "removeComments": true,
- "importHelpers": true,
- "moduleResolution": "node",
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- "charset": "utf8",
- "pretty": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "inlineSourceMap": true,
- "skipLibCheck": true,
- "skipDefaultLibCheck": true,
- "esModuleInterop": true
- },
- "include": [
- "./src"
- ]
- }
|