Skip to content

Commit f85f497

Browse files
committed
build: migrate the module system from commonjs to es6
1 parent a97c57b commit f85f497

File tree

5 files changed

+2
-6
lines changed

5 files changed

+2
-6
lines changed

packages/consumer/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"baseUrl": ".",
55
"target": "es6",
66
"lib": ["es6", "esnext", "dom"],
7-
"module": "commonjs",
87
"moduleResolution": "node",
98
"experimentalDecorators": true,
109
"emitDecoratorMetadata": true,

packages/core/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"baseUrl": ".",
55
"target": "esnext",
66
"lib": ["es6", "esnext", "dom"],
7-
"module": "commonjs",
87
"moduleResolution": "node",
98
"experimentalDecorators": true,
109
"emitDecoratorMetadata": true,

packages/distributor/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"baseUrl": ".",
55
"target": "es6",
66
"lib": ["es6", "esnext", "dom"],
7-
"module": "commonjs",
87
"moduleResolution": "node",
98
"experimentalDecorators": true,
109
"emitDecoratorMetadata": true,

packages/examples/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"baseUrl": ".",
55
"target": "esnext",
66
"lib": ["es6", "esnext", "dom"],
7-
"module": "commonjs",
87
"moduleResolution": "node",
98
"experimentalDecorators": true,
109
"emitDecoratorMetadata": true,

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"compilerOptions": {
33
"baseUrl": ".",
4-
"target": "es5",
4+
"target": "es6",
55
"lib": ["es6", "esnext", "dom"],
6-
"module": "commonjs",
6+
"module": "es6",
77
"moduleResolution": "node",
88
"sourceMap": false,
99
"experimentalDecorators": true,

0 commit comments

Comments
 (0)