-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
tsconfig.base.json
31 lines (31 loc) · 1022 Bytes
/
tsconfig.base.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"baseUrl": ".",
"module": "commonjs",
"target": "es2019",
"lib": ["ES2019", "ES2020.String", "DOM", "DOM.Iterable"],
"moduleResolution": "node",
"declaration": true,
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"strict": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": true,
"noEmitOnError": true,
"useDefineForClassFields": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@node-cache-manager-ioredis/node-cache-manager-ioredis": ["packages/node-cache-manager-ioredis/src/index.ts"],
"@node-cache-manager-mongodb/node-cache-manager-mongodb": ["packages/node-cache-manager-mongodb/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}