mirror of
https://gitee.com/dromara/go-view.git
synced 2024-11-30 02:38:30 +08:00
44 lines
824 B
JSON
44 lines
824 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "esnext",
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"strict": true,
|
||
|
"jsx": "preserve",
|
||
|
"baseUrl": ".",
|
||
|
"sourceMap": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"esModuleInterop": true,
|
||
|
"lib": [
|
||
|
"esnext",
|
||
|
"dom"
|
||
|
],
|
||
|
"types": [
|
||
|
"vite/client"
|
||
|
],
|
||
|
"paths": {
|
||
|
"@/*": [
|
||
|
"src/*"
|
||
|
],
|
||
|
"/#/*": [
|
||
|
"types/*"
|
||
|
]
|
||
|
},
|
||
|
"noImplicitAny": true, //不允许使用any
|
||
|
// "strictNullChecks": true, //不允许使用null
|
||
|
"noImplicitThis": true //不允许往this上面挂属性
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*.ts",
|
||
|
"src/**/*.d.ts",
|
||
|
"src/**/*.tsx",
|
||
|
"src/**/*.vue",
|
||
|
"types/**/*.d.ts",
|
||
|
"types/**/*.ts",
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"dist",
|
||
|
"**/*.js"
|
||
|
]
|
||
|
}
|