加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tsconfig.json 1.43 KB
一键复制 编辑 原始数据 按行查看 历史
linshao 提交于 2024-11-15 03:39 . first commit
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
"types": ["vite/client"],// import.meta.glob (Property 'glob' does not exist on type 'ImportMeta')
// 是否检查通过使用 this 隐式赋予’any’类型 pinia this 报错
"noImplicitThis": false,
/* vite.config.js 配置@为src路径 对应配置 */
"baseUrl": "./",
"paths": {
"@/*": [
"src/*"
]
},
/* Linting */
// 开启严格模式,检查类型声明和赋值...是否合法
"strict": true,
// 检查是否存在未使用的变量
"noUnusedLocals": false,
// 检查是否存在未使用的函数参数
"noUnusedParameters": false,
// 检查switch语句中是否存在break
"noFallthroughCasesInSwitch": true
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化