Closed
Description
Initial checklist
- I read the support docs
- I read the contributing guide
- I agree to follow the code of conduct
- I searched issues and couldn’t find anything (or linked relevant results below)
Affected packages and versions
hastscript==7.0.2
Link to runnable example
https://github.com/tvquizphd/hastscript-test
Steps to reproduce
In index.ts
, I simply import h
from hastscript
:
import { h } from 'hastscript'
Here's a relevant tsconfig.json
snippet:
"compilerOptions": {
"target": "es6",
"outDir": "dist",
"declaration": true,
"module": "node12"
}
Here's a relevant package.json
snippet:
"dependencies": {
"hastscript": "^7.0.2"
},
"devDependencies": {
"typescript": "^4.5.0-beta"
}
Expected behavior
The module should build without error.
Actual behavior
There seems to be an error with dynamic import of jsx-classic
in html.d.ts
and svg.d.ts
:
yarn run v1.22.17
warning package.json: No license field
$ tsc
node_modules/hastscript/lib/html.d.ts(19,27): error TS2307: Cannot find module './jsx-classic' or its corresponding type declarations.
node_modules/hastscript/lib/html.d.ts(20,39): error TS2307: Cannot find module './jsx-classic' or its corresponding type declarations.
node_modules/hastscript/lib/html.d.ts(21,37): error TS2307: Cannot find module './jsx-classic' or its corresponding type declarations.
node_modules/hastscript/lib/html.d.ts(23,14): error TS2307: Cannot find module './jsx-classic' or its corresponding type declarations.
node_modules/hastscript/lib/svg.d.ts(19,27): error TS2307: Cannot find module './jsx-classic' or its corresponding type declarations.
node_modules/hastscript/lib/svg.d.ts(20,39): error TS2307: Cannot find module './jsx-classic' or its corresponding type declarations.
node_modules/hastscript/lib/svg.d.ts(21,37): error TS2307: Cannot find module './jsx-classic' or its corresponding type declarations.
node_modules/hastscript/lib/svg.d.ts(23,14): error TS2307: Cannot find module './jsx-classic' or its corresponding type declarations.
error Command failed with exit code 2.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this comman
Here are lines 17-25 of node_modules/hastscript/lib/html.d.ts
:
export namespace h {
namespace JSX {
type Element = import('./jsx-classic').Element
type IntrinsicAttributes = import('./jsx-classic').IntrinsicAttributes
type IntrinsicElements = import('./jsx-classic').IntrinsicElements
type ElementChildrenAttribute =
import('./jsx-classic').ElementChildrenAttribute
}
}
Runtime
Node v16
Package manager
Other (please specify in steps to reproduce)
OS
Linux
Build and bundle tools
Other (please specify in steps to reproduce)