Files
VRCX/tsconfig.app.json
2026-01-18 08:06:57 +13:00

26 lines
693 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"],
"resolveJsonModule": true,
"noEmit": true,
"paths": {
"*": ["./*"],
"@/*": ["./src/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "build"]
}