Skip to content

Commit 63998f2

Browse files
committed
chore: maintenance
1 parent 59e6c66 commit 63998f2

File tree

3 files changed

+21
-15
lines changed

3 files changed

+21
-15
lines changed

package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"eslint-plugin-tree-shaking": "^1.10.0",
7272
"np": "^7.7.0",
7373
"prettier": "^2.8.8",
74-
"rollup": "^3.21.0",
74+
"rollup": "^3.21.5",
7575
"rollup-plugin-typescript2": "^0.34.1",
7676
"typescript": "^5.0.4",
7777
"vitest": "^0.30.1"

tsconfig.json

+13-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
{
22
"compilerOptions": {
3+
"allowJs": false,
34
"baseUrl": ".",
5+
"declaration": true,
6+
"declarationDir": "./dist/types/",
7+
"downlevelIteration": true,
8+
"esModuleInterop": true,
9+
"isolatedModules": true,
10+
"lib": ["esnext", "DOM", "DOM.Iterable"],
411
"module": "esnext",
5-
"target": "es2019",
6-
"lib": ["esnext", "DOM"],
7-
"strict": true,
812
"moduleResolution": "node",
9-
"isolatedModules": true,
10-
"esModuleInterop": true,
13+
"noImplicitReturns": true,
14+
"noUnusedLocals": true,
1115
"skipLibCheck": true,
12-
"declaration": true,
13-
"declarationDir": "./dist/types/"
16+
"sourceMap": true,
17+
"strict": true,
18+
"target": "es2019",
19+
"useDefineForClassFields": true
1420
},
1521
"include": ["src/**/*", "test/**/*"]
1622
}

0 commit comments

Comments
 (0)