generated from ebizbase/chrome-extension-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
35 lines (35 loc) · 951 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
32
33
34
35
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "dist",
"strict": false,
"removeComments": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitThis": true,
"allowJs": false,
"rootDir": ".",
"sourceMap": true,
"declaration": true,
"esModuleInterop": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"target": "ES2022",
"lib": ["es2022", "dom"],
"types": ["node", "jest"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@ebizbase/nx-internal": ["tools/nx-internal/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}