-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
45 lines (38 loc) · 941 Bytes
/
Copy pathtsconfig.json
File metadata and controls
45 lines (38 loc) · 941 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/**
* This is the tsconfig.json for the devopos scripts, not for the UI or any other services.
*/
{
"compilerOptions": {
// For nodejs 16+ runtime
"target": "ES2021",
// For nodejs type: module
"module": "ESNext",
"moduleResolution": "node",
// full ts mode
"allowJs": false,
"checkJs": false,
"strict": true,
// dev info
"declaration": true,
"sourceMap": false, // for this lib, set to false
// use native class fields
"useDefineForClassFields": true,
"experimentalDecorators": true,
// for commonjs interop
"esModuleInterop": true,
// Disallow inconsistently-cased references to the same file.
"forceConsistentCasingInFileNames": true,
// paths info
"outDir": "./dist/",
"baseUrl": "src/",
// Speedup compile
"skipLibCheck": true
},
// We want more control about which code we will compile and exclude
"include": [
"./src/**/*.ts"
],
"exclude": [
"node_modules"
]
}