Created
April 25, 2019 23:51
-
-
Save vkarpov15/dbac89019245b10b7fb78d3530a1fed3 to your computer and use it in GitHub Desktop.
Hello, Imports with `package.json`
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
import test from './test.js'; | |
test(); |
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
{ "type": "module" } |
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
export default function foo() { | |
console.log('Hello, World!'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment