generated from MysteryCode/node-red-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
39 lines (39 loc) · 854 Bytes
/
tsconfig.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
38
39
{
"compilerOptions": {
"module": "CommonJS",
"esModuleInterop": true,
"target": "ES2022",
"allowJs": false,
"noEmitOnError": true,
"sourceMap": false,
"removeComments": true,
"noEmit": false,
"importHelpers": true,
"preserveWatchOutput": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true,
"preserveConstEnums": true,
"forceConsistentCasingInFileNames": true,
"newLine": "lf",
"types": [
"node"
],
"baseUrl": "./",
"paths": {
"*": [
"node_modules/*"
]
},
"rootDir": "src/",
"outDir": "dist/"
},
"exclude": [
"src/**/init.ts"
]
}