-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
39 lines (38 loc) · 1008 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
36
37
38
39
{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"removeComments": true,
"noLib": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"allowJs": true,
"target": "es2019",
"lib": ["es2019", "es2020.promise", "es2020.bigint", "es2020.string"],
"strict": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true
},
"typeAcquisition": {
"include": ["node"]
},
// NEW: Options for file/directory watching
"watchOptions": {
// Use native file system events for files and directories
"watchFile": "useFsEvents",
"watchDirectory": "useFsEvents",
// Poll files for updates more frequently
// when they're updated a lot.
"fallbackPolling": "dynamicPriority"
},
"exclude": [
"**/node_modules",
"**/*.spec.ts",
"dist"
]
}