| 123456789101112131415161718192021222324 |
- {
- "compilerOptions": {
- "module": "commonjs",
- "target": "es2016",
- "noImplicitAny": false,
- "removeComments": false,
- "emitDeclarationOnly": false,
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true,
- "sourceMap": true,
- "noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true,
- "noUnusedLocals": true,
- "declaration": true,
- "skipLibCheck": true,
- "lib": [
- "dom",
- "es5",
- "es6",
- "es7",
- "es2015"
- ]
- }
- }
|