File tree Expand file tree Collapse file tree 2 files changed +17
-9
lines changed Expand file tree Collapse file tree 2 files changed +17
-9
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ function getTranslation(text: Texts) {
1616 case Texts . Incomplete :
1717 return 'incomplete' ;
1818 }
19+
20+ return '' ;
1921}
2022
2123interface LocalProps extends React . Props < UserProfile > {
Original file line number Diff line number Diff line change 11{
22 "compilerOptions" : {
3- "target " : " es5 " ,
3+ "declaration " : false ,
44 "module" : " system" ,
5- "moduleResolution" : " node" ,
5+ "target" : " es6" ,
6+ "emitDecoratorMetadata" : true ,
7+ "experimentalDecorators" : true ,
8+ "isolatedModules" : false ,
69 "jsx" : " react" ,
10+ "moduleResolution" : " node" ,
11+ "noEmit" : true ,
12+ "noEmitOnError" : true ,
713 "noImplicitAny" : false ,
8- "isolatedModules" : false ,
9- "experimentalDecorators" : true ,
10- "emitDecoratorMetadata" : true ,
14+ "noResolve" : false ,
15+ "outDir" : " ../out" ,
1116 "preserveConstEnums" : true ,
1217 "removeComments" : true ,
13- "sourceMap" : true ,
14- "declaration" : false
18+ "sourceMap" : false ,
19+ "allowUnusedLabels" : false ,
20+ "noImplicitReturns" : true ,
21+ "noFallthroughCasesInSwitch" : true
1522 },
1623 "filesGlob" : [
17- " ../typings/main.d.ts" ,
1824 " **/*.ts" ,
1925 " **/*.tsx" ,
2026 " !node_modules/**"
2834 ],
2935 "atom" : {
3036 "rewriteTsconfig" : true ,
31- "formatOnSave" : true
37+ "formatOnSave" : false
3238 },
3339 "formatCodeOptions" : {
3440 "indentSize" : 2 ,
You can’t perform that action at this time.
0 commit comments