You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can't make Rollup/TypeScript/JsnLog work together. Rollup shows:
[!] RollupError: Unexpected token (Note that you need plugins to import files that are not JavaScript) node_modules/jsnlog/jsnlog.ts
(3:22) 1: /// <reference path="Definitions/jsnlog_interfaces.d.ts"/>
2: 3: import JSNLogAppender = JL.JSNLogAppender
^
Save index.ts unchanged again, rollup produce different error:
[!] RollupError: "JL" is not exported by "node_modules/jsnlog/jsnlog.ts", imported by "index.ts".
https://rollupjs.org/guide/en/#error-name-is-not-exported-by-module
index.ts (1:9)
1: import { JL } from 'jsnlog';
^
Comment index.ts's line JL().info() line fixed the problem, but I need JL().
Use external/globals in rollup.config.mjs makes rollup happy. But index.html failed with:
Uncaught TypeError: Failed to resolve module specifier "jsnlog". Relative references must start with either "/", "./", or "../".
<script src="node_modules/jsnlog/jsnlog.js"> or import './node_modules/jsnlog/jsnlog.js' in index.html can't help.
Comments in rollup.config.mjs and index.html shows these efforts, all failed.
I hope to use ES module. But if it's not possible, UMD is acceptable to me. I must be missing some basic knowledge of these things. Thanks for any help.
The text was updated successfully, but these errors were encountered:
I had ask on SO for several days without any respose. Hope it can be solved here.
I have a reproduce repo JsnLogRollup.
I would like to use JsnLog with ES6 way, take jsnlog.ES6Demo main.js as
index.ts
:With Rollup
rollup.config.mjs
:I can't make Rollup/TypeScript/JsnLog work together. Rollup shows:
Save
index.ts
unchanged again, rollup produce different error:Comment
index.ts
's lineJL().info()
line fixed the problem, but I needJL()
.Use
external/globals
inrollup.config.mjs
makes rollup happy. Butindex.html
failed with:<script src="node_modules/jsnlog/jsnlog.js">
orimport './node_modules/jsnlog/jsnlog.js'
inindex.html
can't help.Comments in
rollup.config.mjs
andindex.html
shows these efforts, all failed.I hope to use ES module. But if it's not possible, UMD is acceptable to me. I must be missing some basic knowledge of these things. Thanks for any help.
The text was updated successfully, but these errors were encountered: