-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.mod.base.json
47 lines (47 loc) · 1.08 KB
/
tsconfig.mod.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
40
41
42
43
44
45
46
47
{
"compilerOptions": {
"target": "ES2023",
"module": "AMD",
"moduleResolution": "node",
"composite": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"inlineSourceMap": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"preserveConstEnums": true,
"removeComments": true,
"skipLibCheck": true,
"strict": true,
"strictPropertyInitialization": false,
"useDefineForClassFields": false,
"paths": {
"@wayward/goodstream": [
"node_modules/@wayward/goodstream/Stream",
"node_modules/@wayward/types/node_modules/@wayward/goodstream/Stream"
],
"@wayward/goodstream/*": [
"node_modules/@wayward/goodstream/*",
"node_modules/@wayward/types/node_modules/@wayward/goodstream/*"
],
"@wayward/*": [
"node_modules/@wayward/types/definitions/*"
],
},
"types": [],
"lib": [
"DOM",
"DOM.Iterable",
"ES2023",
"ESNext",
"WebWorker.ImportScripts",
]
},
"watchOptions": {
"watchFile": "useFsEventsOnParentDirectory",
"excludeDirectories": [
"**/node_modules",
"**/.git",
],
},
}