Skip to content

Commit

Permalink
Fix tsconfig to emit JS files in addition to declarations (#470)
Browse files Browse the repository at this point in the history
`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.
  • Loading branch information
mcmire authored Nov 26, 2024
1 parent 5bdc0b3 commit 62c061c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"declaration": true,
"emitDeclarationOnly": true,
"inlineSources": true,
"noEmit": false,
"outDir": "dist",
Expand Down

0 comments on commit 62c061c

Please sign in to comment.