Files

16 lines
530 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"compilerOptions": {
"composite": true,
// 把 vue-tsc -b 生成 vite.config.ts 的编译产物输出到 node_modules/.tmp
// 避免它出现在项目根目录、从而覆盖 Vite 真正读取的 vite.config.ts。
"outDir": "./node_modules/.tmp",
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"skipLibCheck": true,
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"types": ["node"]
},
"include": ["vite.config.ts"]
}