mirror of
https://github.com/vrc-get/vrc-get.git
synced 2026-06-21 09:58:08 +00:00
26 lines
671 B
JSON
26 lines
671 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["dom", "dom.iterable", "es2021"],
|
|
"target": "ES2021",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"incremental": true,
|
|
"noEmit": true,
|
|
"tsBuildInfoFile": "node_modules/.tsbuildinfo",
|
|
"paths": {
|
|
"@/app/*": ["./app/*"],
|
|
"@/components/*": ["./components/*"],
|
|
"@/lib/*": ["./lib/*"],
|
|
"@/locales/*": ["./locales/*"],
|
|
"@/build/*": ["./build/*"]
|
|
}
|
|
},
|
|
"include": ["scripts/build.d.ts", "**/*.ts", "**/*.tsx", "vite-env.d.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|