Skip to content

Commit 20864ed

Browse files
committed
add noEmit to node
1 parent fb7dbf9 commit 20864ed

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

node.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"compilerOptions": {
55
"allowImportingTsExtensions": true,
66
"allowJs": true,
7-
87
"allowSyntheticDefaultImports": true,
98
"declaration": true,
109
"esModuleInterop": true,
@@ -13,6 +12,7 @@
1312
"maxNodeModuleJsDepth": 10,
1413
"module": "esnext",
1514
"moduleResolution": "node",
15+
"noEmit": true,
1616
"noEmitOnError": true,
1717
"noImplicitAny": true,
1818
"noImplicitReturns": true,

nodenext.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"$schema": "https://json.schemastore.org/tsconfig",
3+
"compilerOptions": {
4+
"module": "NodeNext",
5+
"moduleResolution": "nodenext"
6+
},
37

48
"display": "NodeNext shared base.",
59

6-
"extends": "./node.json",
7-
"compilerOptions": {
8-
"moduleResolution": "nodenext",
9-
"module": "NodeNext"
10-
}
10+
"extends": "./node.json"
1111
}

0 commit comments

Comments
 (0)