mirror of
https://github.com/arc53/DocsGPT.git
synced 2026-05-07 06:30:03 +00:00
- esModuleInterop: false -> true (modern default) - moduleResolution: Node -> Bundler (recommended for Vite) - remove baseUrl; paths resolves relative to tsconfig
10 lines
187 B
JSON
10 lines
187 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": ["vite.config.ts"]
|
|
}
|