We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a11205a commit 9d39196Copy full SHA for 9d39196
transforms/helpers/parse.ts
@@ -17,9 +17,6 @@ const options: ParserOptions = {
17
'decorators-legacy',
18
'exportDefaultFrom',
19
'typescript',
20
- // FIXME: Any other plugins we should enable?
21
- // FIXME: Allow user to enable additional plugins? Could be dangerous.
22
- // FIXME: How to use preset-env?
23
],
24
};
25
transforms/helpers/util/types.ts
@@ -16,7 +16,6 @@ export function assert(
16
message = 'Assertion Error'
): asserts condition {
if (!condition) {
- debugger;
throw new Error(message);
}
0 commit comments