-
-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix build ux #229
Fix build ux #229
Changes from all commits
e47d1b1
dcc96bd
b2b01ed
065cd7d
3edd07a
6d3a8b7
3f0ca80
0518b86
067f63e
4988309
bd0c5a6
9d0cc8e
704f8ff
ec8fe5e
4262565
38242b9
1bc5aaa
f21fe11
59664d3
f3b7921
1db5898
bee7a49
13c25aa
dcc71c4
de3649e
59bf089
58bd9e8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
{ | ||
"extends": "../tsconfig.json", | ||
"compilerOptions": { | ||
"target": "esnext", | ||
"esModuleInterop": true, | ||
"allowSyntheticDefaultImports": true, | ||
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. This is by default turned on when esModuleInterop is true. 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. thanks, will clean this up |
||
"baseUrl": ".", | ||
"paths": { | ||
"aurelia-framework": [ | ||
"../node_modules/aurelia-framework" | ||
] | ||
} | ||
}, | ||
"noUnusedLocals": false, | ||
"noUnusedParameters": false | ||
}, | ||
"exclude": [] | ||
} |
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.
Correct choice :-)