Files
jiaohaoView/tsconfig.json
2025-12-13 18:52:08 +08:00

41 lines
967 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": {
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "node",
"strict": false,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": ["esnext", "dom"],
"types": ["vite/client"],
"skipLibCheck": true,//忽略所有的声明文件( *.d.ts的类型检查。
"baseUrl": "./",//。所有非相对模块导入都会被当做相对于 baseUrl。
"paths": {
"@/*": ["src/*"],
"/@/*": ["src/*"],
"views/*": ["src/views/*"],
"components/*": ["src/components/*"],
"assets/*": ["src/assets/*"]
}
},
"include": [
"vue.d.ts",
"app.d.ts",
"src/*.js",
"src/**/*.d.ts",
"src/**/*.vue",
"src/**/*.vue", "src/views/components/webSocket/app.ts", "src/api/client_alert_info/index.ts",
],
"exclude": [
"node_modules"
],
"typeRoots":[
"./types",
"./node-modules/vue/types"
]
}