41 lines
814 B
JSON
41 lines
814 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2016",
|
|
"jsx": "preserve",
|
|
"lib": [
|
|
"DOM",
|
|
"ESNext"
|
|
],
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"vite/client",
|
|
"unplugin-vue-macros/macros-global",
|
|
"vite-plugin-svg-icons",
|
|
"cesium" // 新增:强制加载 cesium 的类型定义
|
|
],
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"includes": [
|
|
"types/**/*.d.ts"
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules",
|
|
"eslint.config.js"
|
|
]
|
|
} |