Skip to content

Commit 62c061c

Browse files
authored
Fix tsconfig to emit JS files in addition to declarations (#470)
`tsconfig.build.json` is now instructing TypeScript to only emit type declaration files instead of also emitting JavaScript files. This change was erroneously made in a previous commit. This commit removes that instruction.
1 parent 5bdc0b3 commit 62c061c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

tsconfig.build.json

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"declaration": true,
5-
"emitDeclarationOnly": true,
65
"inlineSources": true,
76
"noEmit": false,
87
"outDir": "dist",

0 commit comments

Comments
 (0)