Skip to content

Commit 7af59bc

Browse files
fix(schematics): apply moduleResolution: nodenext to all projects
1 parent 5e9ded0 commit 7af59bc

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed

modules/component-store/tsconfig.schematics.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"rootDir": ".",
55
"stripInternal": true,
66
"experimentalDecorators": true,
7-
"module": "preserve",
8-
"moduleResolution": "bundler",
7+
"module": "nodenext",
8+
"moduleResolution": "nodenext",
99
"downlevelIteration": true,
1010
"outDir": "../../dist/modules/component-store",
1111
"paths": {

modules/component/tsconfig.schematics.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"rootDir": ".",
55
"stripInternal": true,
66
"experimentalDecorators": true,
7-
"module": "preserve",
8-
"moduleResolution": "bundler",
7+
"module": "nodenext",
8+
"moduleResolution": "nodenext",
99
"downlevelIteration": true,
1010
"outDir": "../../dist/modules/component",
1111
"paths": {

modules/data/tsconfig.schematics.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"rootDir": ".",
55
"stripInternal": true,
66
"experimentalDecorators": true,
7-
"module": "preserve",
8-
"moduleResolution": "bundler",
7+
"module": "nodenext",
8+
"moduleResolution": "nodenext",
99
"downlevelIteration": true,
1010
"outDir": "../../dist/modules/data",
1111
"paths": {

modules/entity/tsconfig.schematics.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"rootDir": ".",
55
"stripInternal": true,
66
"experimentalDecorators": true,
7-
"module": "preserve",
8-
"moduleResolution": "bundler",
7+
"module": "nodenext",
8+
"moduleResolution": "nodenext",
99
"downlevelIteration": true,
1010
"outDir": "../../dist/modules/entity",
1111
"paths": {

modules/schematics/tsconfig.schematics.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"rootDir": ".",
55
"stripInternal": true,
66
"experimentalDecorators": true,
7-
"moduleResolution": "node",
7+
"module": "nodenext",
8+
"moduleResolution": "nodenext",
89
"downlevelIteration": true,
910
"outDir": "../../dist/modules/schematics",
1011
"paths": {

modules/store/tsconfig.schematics.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"rootDir": ".",
55
"stripInternal": true,
66
"experimentalDecorators": true,
7-
"module": "preserve",
8-
"moduleResolution": "bundler",
7+
"module": "nodenext",
8+
"moduleResolution": "nodenext",
99
"downlevelIteration": true,
1010
"outDir": "../../dist/modules/store",
1111
"paths": {

0 commit comments

Comments
 (0)