Closed juliankrieger closed 5 years ago
I had problems using the ts starter because of it not being able to import libraries via 'require' until I added
external: [ "fs" ],
to my rollup.config.js. This fixed the problem on my side. Should I consider issueing a pull request?
Why are you using require in TypeScript?
require
You should not be using require when rollup is used. Import statements can be used for the same functionality.
I had problems using the ts starter because of it not being able to import libraries via 'require' until I added
to my rollup.config.js. This fixed the problem on my side. Should I consider issueing a pull request?