Skip to content

Commit 52e9308

Browse files
committed
build(plugin-debug): build debug component to esm
1 parent 8d285ea commit 52e9308

File tree

3 files changed

+24
-8
lines changed

3 files changed

+24
-8
lines changed
Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
{
22
"extends": "../../../tsconfig.base.json",
3-
"compilerOptions": {
4-
"module": "CommonJS",
5-
"rootDir": "./src",
6-
"outDir": "./lib"
7-
},
8-
"include": ["./src"],
93
"references": [
104
{ "path": "../client/tsconfig.build.json" },
115
{ "path": "../core/tsconfig.build.json" },
12-
{ "path": "../utils/tsconfig.build.json" }
13-
]
6+
{ "path": "../utils/tsconfig.build.json" },
7+
{ "path": "./tsconfig.esm.json" },
8+
{ "path": "./tsconfig.cjs.json" }
9+
],
10+
"files": []
1411
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": "../../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"module": "CommonJS",
5+
"rootDir": "./src",
6+
"outDir": "./lib"
7+
},
8+
"include": ["./src/index.ts"]
9+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"extends": "../../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"module": "ES2020",
5+
"rootDir": "./src",
6+
"outDir": "./lib"
7+
},
8+
"include": ["./src"],
9+
"exclude": ["./src/index.ts"]
10+
}

0 commit comments

Comments
 (0)