创建ts 类型的 react工程
npx create-react-app front-ts-app --template typescript
# npm start
> front-ts-app@0.1.0 start
> react-scripts start
(node:33884) [DEP0176] DeprecationWarning: fs.F_OK is deprecated, use fs.constants.F_OK instead
(Use `node --trace-deprecation ...` to show where the warning was created)
Cannot find module 'ajv/dist/compile/codegen'
Require stack:
是因为因为 Create React App(CRA)默认使用的依赖版本太旧 ,和 ajv-keywords 不兼容。
所以我们只需要升级就好了
解决方法:
npm install ajv@latest ajv-keywords@latest