mirror of
https://github.com/vrcx-team/VRCX.git
synced 2026-04-05 16:21:59 +02:00
27 lines
736 B
JSON
27 lines
736 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"jsx": "preserve",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": ["esnext", "dom", "dom.iterable"],
|
|
"types": ["vite/client", "vitest/globals"],
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"strict": false,
|
|
"paths": {
|
|
"*": ["./*"],
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "build"]
|
|
}
|