mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-11-10 10:28:24 +08:00
13505fdedc
* feat: 升级Vue3.4,修复Route调用方式造成一系列问题 * fix: 修复编译问题
37 lines
824 B
JSON
37 lines
824 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "vue",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"lib": ["esnext", "dom"],
|
|
"types": ["vite/client"],
|
|
"noEmit": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"noImplicitAny": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/types/**/*.d.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"node_modules/tdesign-vue-next/global.d.ts"
|
|
],
|
|
"compileOnSave": false
|
|
}
|