-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
37 lines (37 loc) · 1.24 KB
/
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
36
37
{
"compileOnSave": false,
"exclude": ["node_modules", "tmp"],
"compilerOptions": {
"baseUrl": ".",
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"lib": ["ES2022", "DOM"],
"module": "ES2022",
"moduleResolution": "Node",
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"paths": {
"@dnd-mapp/authentication-server-ui/testing": ["apps/authentication-server-ui/src/testing/public-api.ts"],
"@dnd-mapp/data": ["libs/data/src/lib/public-api.ts"]
},
"rootDir": ".",
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"sourceMap": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"target": "ES2022",
"useUnknownInCatchVariables": true
}
}