-
-
Notifications
You must be signed in to change notification settings - Fork 143
/
jsconfig.json
26 lines (26 loc) · 920 Bytes
/
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
{
"compilerOptions": {
"checkJs": true,
"target": "ESNext",
"moduleResolution": "node",
"module": "ESNext",
"allowSyntheticDefaultImports": true,
"verbatimModuleSyntax": true,
"isolatedModules": true,
"resolveJsonModule": true,
"sourceMap": true,
"esModuleInterop": true,
"skipLibCheck": true,
"paths": {
"@/*": ["./common/*"],
"three": ["./types.d.ts"],
"rxjs": ["./types.d.ts"],
},
"types": ["@cloudflare/workers-types", "./types.d.ts"],
},
"exclude": [
"node_modules", "dist", "build", "git_modules", ".svelte-kit", "public", "android", "@types/three",
"**/node_modules", "**/dist", "**/build", "**/git_modules", "**/.svelte-kit", "**/public", "**/android", "**/@types/three",
"**/node_modules/*", "**/dist/*", "**/build/*", "**/git_modules/*", "**/.svelte-kit/*", "**/public/*", "**/android/*", "**@types/three/*.d.ts"
]
}