摘要:
一、都是新建一个 custom.d.ts 二、前端: declare interface Window { FILE_CDN: string; FILE_HOST: string; API_SERVER: string; JAVA_API:string; } declare global { int 阅读全文
随笔分类 - typescript
将create-react-app从javascript迁移到typescript
2021-05-21 17:05 by muamaker, 135 阅读, 收藏, 编辑
摘要:
一、删除全部的 node_modules 注意: 确保之前没有在目录下执行过 tsc --init。 如果执行过,删掉 tsconfig.json , src/ react-app-env.d.ts 这两个文件都删掉。没有更好。 二、安装模块 npm install --save typescrip 阅读全文