You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: upgrade to Rollup 4, TypeScript 5, drop throttle-debounce
Replace rollup.config.js with rollup.config.mjs, swap rollup v1 plugins
for @rollup/plugin-node-resolve and @rollup/plugin-typescript, and
remove the throttle-debounce runtime dependency.
// "removeComments": true, /* Do not emit comments to output. */
22
22
// "noEmit": true, /* Do not emit outputs. */
23
23
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
24
24
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
25
-
"isolatedModules": true,/* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
25
+
"isolatedModules": true/* Transpile each file as a separate module (similar to 'ts.transpileModule'). */,
26
26
/* Strict Type-Checking Options */
27
27
"strict": true/* Enable all strict type-checking options. */,
28
28
"noImplicitAny": true/* Raise error on expressions and declarations with an implied 'any' type. */,
@@ -43,11 +43,13 @@
43
43
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
44
44
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
45
45
// "typeRoots": [], /* List of folders to include type definitions from. */
46
-
// "types": [], /* Type declaration files to be included in compilation. */
46
+
"types": [
47
+
"jest"
48
+
] /* Type declaration files to be included in compilation. */,
47
49
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
48
50
"esModuleInterop": true/* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
49
51
"skipLibCheck": true,
50
-
"forceConsistentCasingInFileNames": true,
52
+
"forceConsistentCasingInFileNames": true
51
53
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
52
54
/* Source Map Options */
53
55
// "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
@@ -58,14 +60,6 @@
58
60
// "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
59
61
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
0 commit comments