1 Star 4 Fork 0

周龙权/vue3-admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tsconfig.json 1.68 KB
一键复制 编辑 原始数据 按行查看 历史
周龙权 提交于 2023-04-05 17:10 . vueuse
/*
https://www.typescriptlang.org/zh/tsconfig
该文件告诉tsc怎么编译ts文件及静态类型检测
编辑器也会读取该文件
*/
{
"compilerOptions": {
"importHelpers": true, //是否帮助导入一些重要功能模块
"noUnusedLocals": false,
"declarationMap": false,
"declaration": false,
"incremental": true,
"target": "esnext", //会用babel来编译
"module": "esnext", //生产的代码babel还会继续转化
"moduleResolution": "node", //模块路径导入包的查找规则
"strict": false, //ts中进行严格类型检查(不允许模糊的any等)
"noLib": false,
"strictNullChecks": false,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true, //导入时,import * as lodash from 'lodash' 合并 import lodash from 'lodash'
"strictFunctionTypes": false,
"jsx": "preserve", //jsx处理形式
"baseUrl": "./",
"allowJs": true, //是否运行js代码
"noEmit": true,
"inlineSourceMap": false,
"emitDeclarationOnly": true,
"sourceMap": false,
"esModuleInterop": true, //es Module commonJs可以互相导入
"resolveJsonModule": true,
"noUnusedParameters": false,
"experimentalDecorators": true,
"lib": ["dom", "esnext"],//指定需要用到的库
"noImplicitAny": false,
"skipLibCheck": true, //跳过对整个库对进行类型检测
//配置别名
"paths": {
"@/*": ["src/*"]
},
"types": ["vite/client","element-plus/global"]
},
//那些文件需要编译
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"env.d.ts",
"components.d.ts",
],
"exclude": ["node_modules"]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zlq520/vue3-admin.git
git@gitee.com:zlq520/vue3-admin.git
zlq520
vue3-admin
vue3-admin
master

搜索帮助