vite-bolt/tsconfig.prod.json
2023-02-01 17:52:53 +08:00

9 lines
203 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"declaration": false, // 输出d.ts
"noEmit": true, // 生输出编译文件
"removeComments": true,
"outDir": "./dist/doc"
},
}