mirror of
https://github.com/NoCrypt/migu.git
synced 2026-01-11 20:10:22 +00:00
26 lines
No EOL
920 B
JSON
26 lines
No EOL
920 B
JSON
{
|
|
"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"
|
|
]
|
|
} |