tsconfig: remove webworker lib, use triple-slash directive

This commit is contained in:
Alex Gleason 2023-09-13 12:19:57 -05:00
parent 88d1dc8e8a
commit 26355eb4ec
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* eslint-disable compat/compat */
/// <reference lib="webworker" />
import IntlMessageFormat from 'intl-messageformat';
import 'intl-pluralrules';
import unescape from 'lodash/unescape';

View File

@ -5,7 +5,7 @@
"sourceMap": true,
"strict": true,
"module": "ESNext",
"lib": ["ESNext", "DOM", "WebWorker"],
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"jsx": "react",
"allowJs": true,