加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tsconfig.json 1.42 KB
一键复制 编辑 原始数据 按行查看 历史
李兵兵 提交于 2024-11-23 14:17 . 校园版运动一号
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"baseUrl": ".", // 解析非相对模块的基地址,默认是当前目录
"paths": {
//路径映射,相对于baseUrl
"@/*": ["src/*"]
},
"allowSyntheticDefaultImports": true, // 允许默认导入
"esModuleInterop": true /* 通过为所有导入创建命名空间对象,实现CommonJS和ES模块之间的互操作性 */,
"skipLibCheck": true /* 跳过声明文件的类型检查. */,
"forceConsistentCasingInFileNames": true /* 不允许对同一文件的大小写不一致的引用 */,
/* Bundler mode */
"moduleResolution": "Node",
"noEmit": true,
"jsx": "preserve",
"jsxImportSource": "vue",
/* Linting */
"strict": true, // 开启严格模式,检查类型声明和赋值...是否合法
"noUnusedLocals": true, // 检查是否存在未使用的变量
"noUnusedParameters": true, // 检查是否存在会使用的函数参数
"noFallthroughCasesInSwitch": true, // 检查switch语句中是否存在break
"noImplicitAny": true, //开放any
"types": ["element-plus/global", "vite/client", "node"]
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"auto-imports.d.ts",
"components.d.ts"
],
"references": [{ "path": "./tsconfig.node.json" }]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化