Skip to content

Commit f22a5ef

Browse files
committed
fixed build errors
1 parent bb3ca85 commit f22a5ef

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

.fernignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,6 @@ examples/
99
.gitignore
1010
jest.config.mjs
1111

12-
README.md
12+
README.md
13+
tsconfig.proxy.json
14+
tsconfig.json

tsconfig.cjs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.base.json",
2+
"extends": "./tsconfig.proxy.json",
33
"compilerOptions": {
44
"module": "CommonJS",
55
"outDir": "dist/cjs"

tsconfig.esm.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.base.json",
2+
"extends": "./tsconfig.proxy.json",
33
"compilerOptions": {
44
"module": "esnext",
55
"outDir": "dist/esm",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"extends": "./tsconfig.cjs.json"
2+
"extends": "./tsconfig.proxy.json"
33
}

tsconfig.proxy.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": "./tsconfig.base.json",
3+
"compilerOptions": {
4+
"isolatedDeclarations": false
5+
}
6+
}

0 commit comments

Comments
 (0)