Skip to content

Commit 4238c0c

Browse files
fix build
1 parent 1704a2c commit 4238c0c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

tsconfig.cjs.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"compilerOptions": {
44
"target": "ES2022",
55
"module": "CommonJS",
6-
"outDir": "./dist/cjs"
6+
"outDir": "./dist/cjs",
7+
"noEmit": false
78
},
89
"include": ["src/**/*"]
910
}

tsconfig.esm.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"compilerOptions": {
44
"target": "ES2021",
55
"module": "ES2022",
6-
"outDir": "./dist"
6+
"outDir": "./dist",
7+
"noEmit": false
78
},
89
"include": ["src/**/*"]
910
}

0 commit comments

Comments
 (0)