| 1234567891011121314151617181920212223242526272829303132 |
- {
- "compileOnSave": false,
- "compilerOptions": {
- "target": "es6",
- "module": "esnext",
- "moduleResolution": "node",
- "lib": ["dom", "esnext"],
- "declaration": false,
- "allowSyntheticDefaultImports": true,
- "esModuleInterop": true,
- "forceConsistentCasingInFileNames": true,
- "importHelpers": true,
- "noEmitHelpers": true,
- "removeComments": false,
- "inlineSourceMap": false,
- "sourceMap": true,
- "noEmitOnError": false,
- "emitDecoratorMetadata": false,
- "experimentalDecorators": true,
- "noImplicitReturns": true,
- "noImplicitThis": true,
- "noImplicitUseStrict": false,
- "noImplicitAny": false,
- "strictNullChecks": false,
- "pretty": true,
- "strict": false,
- "skipLibCheck": true,
- "rootDir": "./src",
- "typeRoots": ["./node_modules/@types"]
- },
- "exclude": ["node_modules"]
- }
|