Skip to content

Update the example for tsc target es2020 #6

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

Closed
dilyanpalauzov opened this issue May 15, 2020 · 0 comments
Closed

Update the example for tsc target es2020 #6

dilyanpalauzov opened this issue May 15, 2020 · 0 comments

Comments

@dilyanpalauzov
Copy link

dilyanpalauzov commented May 15, 2020

I put in package.json : "type":"module" and change in tsconfig: "target":"es2020". Then I run tsc && node src/index.js. Node says, that it cannot find src/counter/counter.

I change in src/index.ts the first line to import {Counter} from './counter/counter.js', the second line to import {someHelpfulFunction} from './util.js' and repeat tsc && node src/index.js. This works.

I delete src/*.jsand src/counter/counter.js and call rollup. It says Error: Could not resolve './util.js' from src/index.ts

I cannot write import {Counter} from './conter/counter.ts', because tsc does not allow this, see also microsoft/TypeScript#38546.

Please update the example, so that it works with TypeScript when target:es2020 and type:module are used and so that the same input files are understood the same way by the typescript compiler, by @rollup/plugin-babel/@babel/preset-typescript and by NodeJS.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants