-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtsconfig.json
29 lines (29 loc) · 873 Bytes
/
tsconfig.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
{
"compilerOptions": {
"target": "es2020",
"module": "es2020",
"lib": ["dom", "dom.iterable", "ES2021"],
"strictNullChecks": true,
"strict": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"noImplicitAny": false,
"isolatedModules": true,
"skipLibCheck": true,
"allowJs": true,
"noEmit": true
},
"include": [
"src/**/*",
"build/**/*",
"foundry-code/common/**/*",
"foundry-code/client/**/*",
"foundry-code/client-esm/**/*"
],
"exclude": [
"foundry-code/client/pixi/placeables/token.js",
"foundry-code/client/pixi/core/interaction/mouse-handler.js",
"foundry-code/client/pixi/extensions/graphics.js"
]
}