123456789101112131415161718192021222324252627 |
- {
- "compilerOptions": {
- "target": "es5",
- "module": "commonjs",
- "moduleResolution": "node",
- "sourceMap": true,
- "inlineSources": true,
- "noImplicitAny": true,
- "rootDir": "./src",
- "outDir": "./dist",
- "allowSyntheticDefaultImports": true,
- "removeComments": true,
- "noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true,
- "pretty": true,
- "declaration": true,
- "skipLibCheck": true,
- "lib": ["es6", "esnext.asynciterable"],
- "types": [
- "node"
- ]
- },
- "exclude": [
- "node_modules",
- "dist"
- ]
- }
|