How about using
"bundler" instead of "node" in "moduleResolution": ?
here:
|
"moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */ |
"node" seems deprecated in TS 6:
Along with that change, I would also remove all .ts suffixes from relative imports in fable-library-ts
Otherwise, users always have to put "allowImportingTsExtensions": true in their tsconfigs.
Or is that not a good idea for some reason?
How about using
"bundler"instead of"node"in"moduleResolution":?here:
Fable/src/fable-library-ts/tsconfig.json
Line 32 in 85ed8bf
"node"seems deprecated in TS 6:Along with that change, I would also remove all
.tssuffixes from relative imports infable-library-tsOtherwise, users always have to put
"allowImportingTsExtensions": truein their tsconfigs.Or is that not a good idea for some reason?