加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tsconfig.build.json 391 Bytes
一键复制 编辑 原始数据 按行查看 历史
四铢半两 提交于 2023-10-19 23:17 . refactor(*): update to vue3
{
"extends": "./tsconfig.json", // 拓展 tsconfig.json 的配置
"compilerOptions": {
"noEmit": false, // 允许生成文件
"declaration": true, // 需要设置为 true 来支持类型
"emitDeclarationOnly": true, // 只生成类型文件
"declarationDir": "lib" // 类型文件的导出目录
},
"include": ["src"] // 编译目标仅为 src 文件夹下的文件
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化