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 33
33
" config.js" ,
34
34
" prettier.js" ,
35
35
" jest.js" ,
36
- " lint-staged.js"
36
+ " lint-staged.js" ,
37
+ " tsconfig.json"
37
38
],
38
39
"keywords" : [],
39
40
"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