-
Notifications
You must be signed in to change notification settings - Fork 519
Update all projects to TypeScript 2.0 - remove typings - etc #362
Changes from 6 commits
7618fd1
1a0be69
935b2ac
60f8902
cfb4b84
63e030d
080e3e6
b6607cf
40ac5b2
de5bb05
5c2741d
44c30ad
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,12 @@ | |
"moduleResolution": "node", | ||
"target": "es5", | ||
"sourceMap": true, | ||
"skipDefaultLibCheck": true | ||
"skipDefaultLibCheck": true, | ||
"types": ["core-js", "crossroads", "history", "knockout", | ||
"requirejs", "signals", "whatwg-fetch" ] | ||
}, | ||
"compileOnSave": false, | ||
"buildOnSave": false, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are these two lines really needed? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. They are just helpful depending on certain IDE's to disable automatic There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why are they only in one template and not all? (As far as I know the default value of buildOnSave is already false.) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Have removed them |
||
"exclude": [ | ||
"bin", | ||
"node_modules" | ||
|
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's keep renaming separate from this PR. Can you revert the names?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was breaking since webpack (#363) is looking for a file by that name, want me to change it there instead? @SteveSandersonMS