-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
28 lines (28 loc) · 807 Bytes
/
tsconfig.node.json
File metadata and controls
28 lines (28 loc) · 807 Bytes
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
{
"compilerOptions": {
"paths": {
"angular-server-side-configuration": ["./dist/angular-server-side-configuration"],
"angular-server-side-configuration/*": ["./dist/angular-server-side-configuration/*"]
},
"declaration": true,
"esModuleInterop": true,
"lib": ["es2022"],
"module": "commonjs",
"moduleResolution": "node",
"outDir": "./out-tsc/node",
"noEmitOnError": false,
"strictNullChecks": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"skipDefaultLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": false,
"noImplicitThis": true,
"skipLibCheck": true,
"strictFunctionTypes": true,
"sourceMap": true,
"target": "es2022",
"types": ["node"]
}
}