-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsconfig.json
48 lines (48 loc) · 1.08 KB
/
jsconfig.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
48
{
"compilerOptions": {
"baseUrl": ".",
"checkJs": true,
"esModuleInterop": true,
"lib": ["esnext", "dom", "dom.iterable"],
"module": "nodenext",
"moduleResolution": "nodenext",
"paths": {
"#cllctn/*": ["./collection/*"],
"#config/*": ["./configuration/*"],
"#lib/*": ["./library/*"],
"#prefs/*": ["./preferences/*"],
"#res/*": ["./response/*"],
"#settings/*": ["./settings/*"],
"#types/*": ["./types/*"]
},
"resolveJsonModule": true,
"target": "es6",
"typeRoots": ["node_modules/@types"],
"types": ["jest", "node"],
"verbatimModuleSyntax": true
},
"exclude": [".vscode", "collection", "coverage", "node_modules", "response/**/snapshot"],
"include": [
"**/*.cjs",
"**/*.cjsx",
"**/*.cts",
"**/*.ctsx",
"**/*.es",
"**/*.es6",
"**/*.js",
"**/*.jsm",
"**/*.json",
"**/*.json5",
"**/*.json6",
"**/*.jsonc",
"**/*.jsox",
"**/*.jsx",
"**/*.mjs",
"**/*.mjsx",
"**/*.mts",
"**/*.mtsx",
"**/*.node",
"**/*.ts",
"**/*.tsx"
]
}