12345678910111213141516171819202122232425262728 |
- {
- "compilerOptions": {
- "target": "es5",
- "module": "commonjs",
- "lib": [
- "es2015"
- ],
- "declaration": true,
- "sourceMap": true,
- "outDir": "./dist",
- "importHelpers": true,
- "strict": true,
- "noImplicitAny": true,
- "strictNullChecks": true,
- "strictFunctionTypes": true,
- "strictPropertyInitialization": true,
- "noImplicitThis": true,
- "alwaysStrict": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true,
- "types": [
- "node"
- ],
- "esModuleInterop": true
- }
- }
|