forked from Ethaks/curseborne
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
43 lines (39 loc) · 1.05 KB
/
Copy pathtsconfig.json
File metadata and controls
43 lines (39 loc) · 1.05 KB
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
{
"compilerOptions": {
"noEmit": true,
"module": "ESNext",
"target": "ESNext",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"esModuleInterop": true,
"moduleResolution": "node",
"allowJs": true,
"checkJs": false,
"strict": true,
"paths": {
"@documents/*": ["./module/documents/*"],
"@models/*": ["./module/data/*"],
"@actor/*": ["./module/data/actor/*"],
"@item/*": ["./module/data/item/*"],
"@helpers/*": ["./module/helpers/*"],
"@config/*": ["./module/config/*"],
"@dice/*": ["./module/dice/*"],
"@applications/*": ["./module/applications/*"],
"@sheets/*": ["./module/applications/sheets/*"],
"@foundry/*": ["./foundry/*"],
"@client/*": ["./foundry/client/*"],
"@common/*": ["./foundry/common/*"]
}
},
"exclude": ["node_modules", "foundry/common/server.mjs"],
"include": [
"module/curseborne.mjs",
"**/*.d.ts",
"foundry/client/client.mjs",
"foundry/client/global.d.mts",
"foundry/common/**/*.mjs",
"./foundry/public/scripts/greensock"
],
"typeAcquisition": {
"include": ["jquery", "gsap"]
}
}