You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.4 KiB
71 lines
1.4 KiB
12 months ago
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "esnext",
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"strict": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"strictFunctionTypes": false,
|
||
|
"jsx": "preserve",
|
||
|
"baseUrl": ".",
|
||
|
"allowJs": true,
|
||
|
"sourceMap": true,
|
||
|
"esModuleInterop": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"lib": [
|
||
|
"dom",
|
||
|
"esnext"
|
||
|
],
|
||
|
"types": [
|
||
|
"vite/client",
|
||
|
"jest",
|
||
|
"vue-cesium/global",
|
||
|
"vue-cesium/Cesium"
|
||
|
],
|
||
|
"typeRoots": [
|
||
|
"./node_modules/@types/",
|
||
|
"./types"
|
||
|
],
|
||
|
"noImplicitAny": false,
|
||
|
"skipLibCheck": true,
|
||
|
"paths": {
|
||
|
"/@/*": [
|
||
|
"src/*"
|
||
|
],
|
||
|
"@/*": [
|
||
|
"src/*"
|
||
|
],
|
||
|
"/#/*": [
|
||
|
"types/*"
|
||
|
],
|
||
|
"@assets*": [
|
||
|
"src/assets/*"
|
||
|
],
|
||
|
}
|
||
|
},
|
||
|
"include": [
|
||
|
"tests/**/*.ts",
|
||
|
"src/**/*.ts",
|
||
|
"src/**/*.d.ts",
|
||
|
"src/**/*.tsx",
|
||
|
"src/**/*.vue",
|
||
|
"types/**/*.d.ts",
|
||
|
"types/**/*.ts",
|
||
|
"build/**/*.ts",
|
||
|
"build/**/*.d.ts",
|
||
|
"mock/**/*.ts",
|
||
|
"vite.config.ts",
|
||
|
"node_modules/vue-cesium/Cesium.d.ts",
|
||
|
"node_modules/vue-cesium/global.d.ts"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"tests/server/**/*.ts",
|
||
|
"dist",
|
||
|
"**/*.js"
|
||
|
]
|
||
|
}
|