Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
tsconfig.json 637 Bytes
Copy Edit Raw Blame History
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": ["esnext", "dom"],
"types": [
"vite/client",
"vite-plugin-pwa/client"
],
"typeRoots": [
"./node_modules/@types/"
],
"baseUrl": "src",
"paths": {
"@/*": ["./*"]
}
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"auto-imports.d.ts"
],
"exclude": [
"node_modules",
"dist"
]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化