File tree Expand file tree Collapse file tree 4 files changed +34
-1
lines changed
Expand file tree Collapse file tree 4 files changed +34
-1
lines changed Original file line number Diff line number Diff line change 1818 "@babel/preset-typescript" : " ^7.13.0" ,
1919 "@flextremedev/eslint-config" : " ^0.1.1" ,
2020 "@flextremedev/prettier-config" : " ^0.1.0" ,
21+ "@types/jest" : " ^26.0.22" ,
22+ "@types/node" : " ^14.14.37" ,
2123 "eslint" : " ^7.23.0" ,
2224 "eslint-config-prettier" : " ^8.1.0" ,
2325 "eslint-plugin-import" : " ^2.22.1" ,
2426 "eslint-plugin-prettier" : " ^3.3.1" ,
2527 "husky" : " ^3.0.5" ,
2628 "lint-staged" : " ^9.2.5" ,
27- "prettier" : " ^2.2.1"
29+ "prettier" : " ^2.2.1" ,
30+ "typescript" : " ^4.2.3"
2831 }
2932}
Original file line number Diff line number Diff line change 4747 },
4848 "devDependencies" : {
4949 "@flextremedev/eslint-config-react" : " ^0.1.1" ,
50+ "@types/react" : " ^17.0.3" ,
51+ "@types/react-dom" : " ^17.0.3" ,
52+ "@types/react-helmet" : " ^6.1.0" ,
5053 "eslint-config-prettier" : " ^6.2.0" ,
5154 "eslint-plugin-prettier" : " ^3.1.0" ,
5255 "eslint-plugin-react" : " ^7.23.1" ,
Original file line number Diff line number Diff line change 1+ /// <reference types="react-scripts" />
Original file line number Diff line number Diff line change 1+ {
2+ "compilerOptions" : {
3+ "target" : " es5" ,
4+ "lib" : [
5+ " dom" ,
6+ " dom.iterable" ,
7+ " esnext"
8+ ],
9+ "allowJs" : true ,
10+ "skipLibCheck" : true ,
11+ "esModuleInterop" : true ,
12+ "allowSyntheticDefaultImports" : true ,
13+ "strict" : true ,
14+ "forceConsistentCasingInFileNames" : true ,
15+ "noFallthroughCasesInSwitch" : true ,
16+ "module" : " esnext" ,
17+ "moduleResolution" : " node" ,
18+ "resolveJsonModule" : true ,
19+ "isolatedModules" : true ,
20+ "noEmit" : true ,
21+ "jsx" : " react-jsx"
22+ },
23+ "include" : [
24+ " src"
25+ ]
26+ }
You can’t perform that action at this time.
0 commit comments