-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In a *.js file, add ts suffix for import statement, see phetsims/pere…
- Loading branch information
Showing
2 changed files
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,8 @@ | |
* @author Jonathan Olson <[email protected]> | ||
*/ | ||
|
||
import execute from '../../perennial-alias/js/common/execute.js'; | ||
// TODO: Convert chainsBuildTest.js to TypeScript and get rid of *.ts in the import, see https://github.com/phetsims/perennial/issues/410 | ||
import execute from '../../perennial-alias/js/common/execute.ts'; | ||
import gruntCommand from '../../perennial-alias/js/common/gruntCommand.js'; | ||
import grunt from '../../perennial-alias/js/npm-dependencies/grunt.js'; | ||
import qunit from '../../perennial-alias/js/npm-dependencies/qunit.js'; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,8 @@ | |
* @author Jonathan Olson <[email protected]> | ||
*/ | ||
|
||
import execute from '../../perennial-alias/js/common/execute.js'; | ||
// TODO: Convert generationTest.js to TypeScript and get rid of *.ts in the import, see https://github.com/phetsims/perennial/issues/410 | ||
import execute from '../../perennial-alias/js/common/execute.ts'; | ||
import gruntCommand from '../../perennial-alias/js/common/gruntCommand.js'; | ||
import qunit from '../../perennial-alias/js/npm-dependencies/qunit.js'; | ||
|
||
|