| 1234567891011121314151617181920212223242526 |
- {
- "compilerOptions": {
- "baseUrl": ".",
- "module": "esnext",
- "target": "es6",
- "noImplicitAny": false,
- "removeComments": false,
- "emitDeclarationOnly": false,
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true,
- "sourceMap": true,
- "noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true,
- "noUnusedLocals": true,
- "declaration": true,
- "skipLibCheck": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "lib": [
- "dom",
- "es5",
- "es6",
- "es7"
- ]
- }
- }
|