File tree Expand file tree Collapse file tree 3 files changed +30
-1
lines changed Expand file tree Collapse file tree 3 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 3333 " config.js" ,
3434 " prettier.js" ,
3535 " jest.js" ,
36- " lint-staged.js"
36+ " lint-staged.js" ,
37+ " tsconfig.json"
3738 ],
3839 "keywords" : [],
3940 "author" : " Jamie Rolfs <jamie.rolfs@hover.to>" ,
Original file line number Diff line number Diff line change 1+ {
2+ "compilerOptions" : {
3+ "alwaysStrict" : true ,
4+ "baseUrl" : " ./" ,
5+ "declaration" : true ,
6+ "esModuleInterop" : true ,
7+ "importHelpers" : true ,
8+ "jsx" : " react" ,
9+ "lib" : [" dom" , " esnext" ],
10+ "module" : " esnext" ,
11+ "moduleResolution" : " node" ,
12+ "noFallthroughCasesInSwitch" : true ,
13+ "noImplicitAny" : true ,
14+ "noImplicitReturns" : true ,
15+ "noImplicitThis" : true ,
16+ "noUnusedLocals" : true ,
17+ "noUnusedParameters" : true ,
18+ "sourceMap" : true ,
19+ "strict" : true ,
20+ "strictFunctionTypes" : true ,
21+ "strictNullChecks" : true ,
22+ "strictPropertyInitialization" : true ,
23+ "target" : " es5"
24+ }
25+ }
Original file line number Diff line number Diff line change 1+ {
2+ "extends" : " ./src/config/tsconfig"
3+ }
You can’t perform that action at this time.
0 commit comments