Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b1c387c

Browse files
committedSep 25, 2023
feat: enable noEmit in tsconfig.json
1 parent 36e236a commit b1c387c

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed
 

Diff for: ‎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,

Diff for: ‎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)
Please sign in to comment.