-
-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 695 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 695 Bytes
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
{
"compilerOptions": {
"module": "ES2022",
"target": "ES2022",
"moduleResolution": "bundler",
"strict": false,
"noEmit": true,
"allowJs": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
"skipLibCheck": true,
"types": [
"@league-of-foundry-developers/foundry-vtt-types",
"dnd5e/dnd5e/dnd5e.d.mts",
"vitest/globals",
],
"paths": {
"@client/*": ["./foundry/client/*"],
"@common/*": ["./foundry/common/*"]
}
},
"include": [
"src/**/*.ts",
"src/**/*.mjs",
"src/**/*.js",
"tests/**/*.ts",
],
"exclude": ["node_modules", "dist", "vendor", "src/vendor"]
}