We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
.ts
Eg, deno / bun allow and prefer something like
export { Parser0 } from "./parsers/Parser0.ts"; export { Parser } from "./parsers/Parser.ts"; export { ParserResult } from "./parsers/ParserResult.ts";
But AssemblyScript complains:
ERROR TS6054: File 'src/parsers/Parser0.ts.ts' not found. : 1 │ export { Parser0 } from "./parsers/Parser0.ts"; │ ~~~~~~~~~~~~~~~~~~~~~~ └─ in src/index.ts(1,25) ERROR TS6054: File 'src/parsers/Parser.ts.ts' not found. : 2 │ export { Parser } from "./parsers/Parser.ts"; │ ~~~~~~~~~~~~~~~~~~~~~ └─ in src/index.ts(2,24) ERROR TS6054: File 'src/parsers/ParserResult.ts.ts' not found. : 3 │ export { ParserResult } from "./parsers/ParserResult.ts"; │ ~~~~~~~~~~~~~~~~~~~~~~~~~~~ └─ in src/index.ts(3,30)
The text was updated successfully, but these errors were encountered:
Did an initial attempt but seems to be slightly more involved: #2875
Sorry, something went wrong.
No branches or pull requests
Feature suggestion
Eg, deno / bun allow and prefer something like
But AssemblyScript complains:
The text was updated successfully, but these errors were encountered: