| 1234567891011121314151617181920212223242526 |
- {
- "compilerOptions": {
- "module": "commonjs",
- "declaration": true,
- "noImplicitAny": false,
- "removeComments": true,
- "noLib": false,
- "skipLibCheck": true,
- "lib": ["es2017"],
- "allowSyntheticDefaultImports": true,
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true,
- "target": "es6",
- "strict": true,
- "strictPropertyInitialization": false,
- "sourceMap": true,
- "outDir": "./dist",
- "baseUrl": "./src",
- "plugins": [
- {
- "name": "tslint-language-service",
- "ignoreDefinitionFiles": true
- }
- ]
- }
- }
|