1 Star 3 Fork 1

鱼樱前端/vite-vue3-h5

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tsconfig.app.json 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
“lanhailang” 提交于 2024-09-11 15:27 . fix: 修复tsconfig报错问题
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
/* 支持使用any */
"noImplicitAny": false,
/* 表示所有非相对模块导入的根路径 */
"baseUrl": ".",
/* 别名配置 */
"paths": {
"@/*": ["src/*"],
"@components/*": ["src/components/*"],
"@utils/*": ["src/utils/*"]
},
"types": ["node"],
"typeRoots": ["./node_modules/@types", "./typings"],
/* Bundler mode 原本 bundler */
"moduleResolution": "Node",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "preserve",
"esModuleInterop": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
/* 通过指定 include 属性,你可以控制 TypeScript 编译器处理哪些文件 */
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "src/**/*.d.ts", "typings/**/*.d.ts"]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yuyingqianduan/vite-vue3-h5.git
git@gitee.com:yuyingqianduan/vite-vue3-h5.git
yuyingqianduan
vite-vue3-h5
vite-vue3-h5
master

搜索帮助