1 Star 5 Fork 3

konsei / vtatv

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
tsconfig.json 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
白桦 提交于 2022-11-08 18:05 . chore: 第一次提交
/* tsconfig.json */
{
"compilerOptions": {
"incremental": true, // TS编译器在第一次编译之后会生成一个存储编译信息的文件,第二次编译会在第一次的基础上进行增量编译,可以提高编译的速度
"tsBuildInfoFile": "./buildFile", // 增量编译文件的存储位置
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"moduleResolution": "Node",
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": ["ESNext", "DOM"],
"skipLibCheck": true,
"types": ["vite/client", "ant-design-vue/typings/global", "node"], // 加载的声明文件包
"baseUrl": ".",
"paths": {
"/@/*": ["src/*"]
}
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"components.d.ts",
"vite.config.ts"
],
"references": [{ "path": "./tsconfig.node.json" }],
"exclude": ["node_modules", "tests/server/**/*.ts", "dist", "**/*.js"]
}
1
https://gitee.com/konsei/vtatv.git
git@gitee.com:konsei/vtatv.git
konsei
vtatv
vtatv
master

搜索帮助