Skip to content

Commit 246c314

Browse files
committed
Set noEmit to true in tsconfig.json
Changed the TypeScript compiler option 'noEmit' from false to true to prevent emitting output files during compilation. This is useful for type-checking only workflows.
1 parent 68a4a39 commit 246c314

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

tsconfig.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
{
23
"compilerOptions": {
34
"composite": true,
@@ -9,7 +10,7 @@
910
"lib": ["esnext"],
1011
"module": "esnext",
1112
"moduleResolution": "node",
12-
"noEmit": false,
13+
"noEmit": true,
1314
"noFallthroughCasesInSwitch": true,
1415
"noImplicitReturns": true,
1516
"noImplicitUseStrict": false,
@@ -34,4 +35,4 @@
3435
"**/tsconfig.json"
3536
],
3637
"include": ["src/**/*", "nitrogen/**/*.json"]
37-
}
38+
}

0 commit comments

Comments
 (0)