tsconfig: remove webworker lib, use triple-slash directive
This commit is contained in:
parent
88d1dc8e8a
commit
26355eb4ec
|
@ -1,4 +1,4 @@
|
||||||
/* eslint-disable compat/compat */
|
/// <reference lib="webworker" />
|
||||||
import IntlMessageFormat from 'intl-messageformat';
|
import IntlMessageFormat from 'intl-messageformat';
|
||||||
import 'intl-pluralrules';
|
import 'intl-pluralrules';
|
||||||
import unescape from 'lodash/unescape';
|
import unescape from 'lodash/unescape';
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"module": "ESNext",
|
"module": "ESNext",
|
||||||
"lib": ["ESNext", "DOM", "WebWorker"],
|
"lib": ["ESNext", "DOM"],
|
||||||
"target": "ESNext",
|
"target": "ESNext",
|
||||||
"jsx": "react",
|
"jsx": "react",
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
|
|
Loading…
Reference in New Issue