12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "compileOnSave": true,
- "compilerOptions": {
- "allowJs": false,
- "allowUnreachableCode": false,
- "allowUnusedLabels": false,
- "charset": "utf8",
- "declaration": true,
- "declarationDir": "types/database",
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- "importHelpers": false,
- "module": "commonjs",
- "noEmitOnError": false,
- "noFallthroughCasesInSwitch": true,
- "noImplicitAny": false,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "outDir": "src/db",
- "pretty": true,
- "removeComments": true,
- "stripInternal": true,
- "skipDefaultLibCheck": true,
- "skipLibCheck": true,
- "target": "es6",
- "moduleResolution": "node",
- "types": [
- "node",
- "jest",
- "mocha"
- ]
- },
- "include": [
- "src/**/*"
- ],
- "exclude": [
- "node_modules",
- "test"
- ]
- }
|