File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
typescript-getting-started/functions Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 1111 "typescript" : " ^2.6.1"
1212 },
1313 "scripts" : {
14- "build" : " ./node_modules/.bin/tslint --project tsconfig.json && ./node_modules/.bin/tsc" ,
14+ "lint" : " ./node_modules/.bin/tslint -p tsconfig.json" ,
15+ "build" : " ./node_modules/.bin/tsc" ,
1516 "serve" : " npm run build && firebase serve --only functions" ,
1617 "shell" : " npm run build && firebase experimental:functions:shell" ,
1718 "start" : " npm run shell" ,
Original file line number Diff line number Diff line change 7171 // Expressions must always return a value. Avoids common errors like const myValue = functionReturningVoid();
7272 "no-void-expression" : [true , " ignore-arrow-function-shorthand" ],
7373
74- // Makes sure result of typeof is compared to correct string values.
75- "typeof-compare" : true ,
76-
7774 // Disallow duplicate imports in the same file.
7875 "no-duplicate-imports" : true ,
7976
You can’t perform that action at this time.
0 commit comments