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
From @ksnyde on July 1, 2018 17:43
Steps to Reproduce:
use tsc to transpile (using TS 3.0.0-dev.20180603) project with dynamic import like:
tsc
private static _defaultDb: import("abstracted-firebase").RealTimeDB;
run tsc with the following tsconfig.json:
tsconfig.json
{ "compilerOptions": { "declaration": true, "module": "esnext", "target": "es2017", "lib": ["es2017", "esnext.asynciterable", "es2015.reflect"], "moduleResolution": "node", "sourceMap": true, "noImplicitAny": true, "experimentalDecorators": true, "emitDecoratorMetadata": true, "outDir": "./dist/esnext", "removeComments": false, "typeRoots": ["./node_modules/@types"] }, "include": ["src/**/*"], "exclude": ["node_modules/**/*", "node_modules/@firebase/**/*.d.ts"] }
No errors are reported but if you go into the .d.ts file where the import existed you'll find a transpilation similar to:
.d.ts
protected _db: import("../../../../../../Users/ken/mine/forest-fire/firemodel/src/decorators/schema").RealTimeDB;
Does this issue occur when all extensions are disabled?: Yes
Copied from original issue: microsoft/vscode#53400
The text was updated successfully, but these errors were encountered:
Looks like one of
Can you try out our nightly (npm install -g typescript@next) and see if you're able to reproduce the issue?
npm install -g typescript@next
Sorry, something went wrong.
startsWith
Fix should just have been merged with #25364, please try with typescript@next.
typescript@next
No branches or pull requests
From @ksnyde on July 1, 2018 17:43
Steps to Reproduce:
use
tsc
to transpile (using TS 3.0.0-dev.20180603) project with dynamic import like:run
tsc
with the followingtsconfig.json
:No errors are reported but if you go into the
.d.ts
file where the import existed you'll find a transpilation similar to:Does this issue occur when all extensions are disabled?: Yes
Copied from original issue: microsoft/vscode#53400
The text was updated successfully, but these errors were encountered: