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
The compiler does not allow me to export a default abstract class from a file.
Example:
export default abstract class MyClass { }
but I can do export when separating the definition from the export.
tsconfig.json
{ "compilerOptions": { "module": "amd", "target": "es5", "lib": [ "es5", "es2015" ], "jsx": "react", "noEmitHelpers": true, "noImplicitAny": false, "noEmitOnError": true, "noUnusedLocals": true, "noUnusedParameters": true, "allowSyntheticDefaultImports": true, "forceConsistentCasingInFileNames": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "sourceMap": true, "moduleResolution": "node", "rootDir": "src" }, "exclude": [ "node_modules", "jspm_packages", "lib" ] }
The text was updated successfully, but these errors were encountered:
Duplicate of #3792
Sorry, something went wrong.
No branches or pull requests
The compiler does not allow me to export a default abstract class from a file.
Example:
but I can do export when separating the definition from the export.
tsconfig.json
The text was updated successfully, but these errors were encountered: