12345678910111213141516171819202122 |
- {
- "compilerOptions": {
- "lib": [
- "DOM",
- "WebWorker",
- "ES2015"
- ],
- "target": "ES2016",
- "allowSyntheticDefaultImports": true,
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- "moduleResolution": "node",
- "skipLibCheck": true,
- "strict": true
- },
- "include": [
- "src/**/*"
- ],
- "exclude": [
- "node_modules"
- ]
- }
|