Skip to content

Commit

Permalink
Disable allowJs in tsconfig.json.
Browse files Browse the repository at this point in the history
This demonstrates a failure that only cropped up when publishing
(because `ember ts:precompile` uses `--allowJs false`).
  • Loading branch information
rwjblue committed May 5, 2020
1 parent c07e8c6 commit dde8fce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"target": "es2017",
"allowJs": true,
"allowJs": false,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
Expand Down

0 comments on commit dde8fce

Please sign in to comment.