12345678910111213141516171819202122232425 |
- {
- "compileOnSave": true,
- "compilerOptions": {
- "module": "commonjs",
- "target": "ES2018",
- "moduleResolution": "node",
- "types": [
- "node"
- ],
- "outDir": "lib",
- "resolveJsonModule": true,
- "noResolve": true,
- "newLine": "lf",
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- "declaration": true
- },
- "include": [
- "src/**/*"
- ],
- "exclude": [
- "node_modules",
- "test"
- ]
- }
|