加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tsconfig.json 1.28 KB
一键复制 编辑 原始数据 按行查看 历史
tangbo 提交于 2021-05-19 18:38 . add types
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
// "noImplicitAny": false, /* 不允许隐式的any类型 */
"esModuleInterop": true, /* 通过为所有导入创建命名空间对象,实现CommonJS和ES模块之间的互操作性 */
"skipLibCheck": true /* 跳过声明文件的类型检查. */,
"forceConsistentCasingInFileNames": true, /* 不允许对同一文件的大小写不一致的引用 */
"lib": [
"esnext",
"dom"
],
"types": [
"vite/client"
],
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
],
"comps/*": [
"src/components/*"
],
"api/*": [
"src/api/*"
],
"views/*": [
"src/views/*"
],
"store/*": [
"src/store/*"
]
},
},
"typeRoots": ["./node_modules/@types/", "./types"],// 声明文件目录,默认时node_modules/@types
//指定一个匹配列表(属于自动指定该路径下的所有ts相关文件)
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"mock/**/*.ts",
"types/**/*.d.ts",
"types/**/*.ts",
]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化