mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-06 00:32:01 +02:00
27 lines
678 B
JSON
27 lines
678 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": ["esnext"],
|
|
"types": ["node"],
|
|
"noEmit": true,
|
|
"paths": {
|
|
"*": ["./*"],
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/vite.config.js",
|
|
"src/shared/utils/localizationHelperCLI.js"
|
|
],
|
|
"exclude": ["node_modules", "build"]
|
|
}
|