Skip to content

Commit 617dcc4

Browse files
feat: enable noEmit in tsconfig.json (#888)
## PR Checklist - [x] Addresses an existing open issue: fixes #800 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview Updates the repo's `tsconfig.json` file and backing template.
1 parent b7a045b commit 617dcc4

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/steps/writing/creation/rootFiles.ts

+1
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
163163
esModuleInterop: true,
164164
module: "NodeNext",
165165
moduleResolution: "NodeNext",
166+
noEmit: true,
166167
outDir: "lib",
167168
resolveJsonModule: true,
168169
skipLibCheck: true,

tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"esModuleInterop": true,
66
"module": "NodeNext",
77
"moduleResolution": "NodeNext",
8+
"noEmit": true,
89
"outDir": "lib",
910
"resolveJsonModule": true,
1011
"skipLibCheck": true,

0 commit comments

Comments
 (0)