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 f4431d2 commit 5c39311Copy full SHA for 5c39311
editors/code/src/highlighting.ts
@@ -1,7 +1,6 @@
1
import * as vscode from 'vscode';
2
import * as lc from 'vscode-languageclient';
3
-import * as seedrandom_ from 'seedrandom';
4
-const seedrandom = seedrandom_; // https://github.com/jvandemo/generator-angular2-library/issues/221#issuecomment-355945207
+import seedrandom from 'seedrandom';
5
6
import { ColorTheme, TextMateRuleSettings } from './color_theme';
7
editors/code/tsconfig.json
@@ -13,7 +13,8 @@
13
"noUnusedParameters": true,
14
"noImplicitReturns": true,
15
"noFallthroughCasesInSwitch": true,
16
- "newLine": "LF"
+ "newLine": "LF",
17
+ "esModuleInterop": true,
18
},
19
"exclude": [
20
"node_modules"
0 commit comments