UNPKG

bixi

Version:

企业级中后台前端解决方案

10 lines (7 loc) 298 B
const fs = require('fs-extra'); const path = require('path'); const { PATH } = require('../util'); const filePath = path.join(PATH.root, 'tsconfig.json'); const json = fs.readJsonSync(filePath); json.angularCompilerOptions = { enableIvy: false }; fs.writeJSONSync(filePath, json, { spaces: 2 });