Skip to content

Commit 74e6ca3

Browse files
committed
cleanup
1 parent 9f65514 commit 74e6ca3

File tree

7 files changed

+2
-5
lines changed

7 files changed

+2
-5
lines changed

build/bin/clean.mjs

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ async function main() {
1313
deleteIfExists(TarBall),
1414
deleteIfExists(DistDir),
1515
...frontendProjects.map(async project => await deleteIfExists(project.dist)),
16+
...frontendProjects.map(async project => await deleteIfExists(project.docs)),
1617
]);
1718
}
1819

packages/components/tsconfig.json

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"extends": "../../tsconfig-base.json",
33
"compilerOptions": {
44
"composite": true,
5-
"rootDir": ".",
65
"outFile": "dist/index.js"
76
},
87
"include": ["src"],

packages/core/tsconfig.json

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"extends": "../../tsconfig-base.json",
33
"compilerOptions": {
44
"composite": true,
5-
"rootDir": ".",
65
"outFile": "dist/index.js"
76
},
87
"include": ["src"],

packages/jquery/tsconfig.json

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"extends": "../../tsconfig-base.json",
33
"compilerOptions": {
44
"composite": true,
5-
"rootDir": ".",
65
"outFile": "dist/index.js",
76
},
87
"include": ["src"]

packages/schedule/tsconfig.json

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"extends": "../../tsconfig-base.json",
33
"compilerOptions": {
44
"composite": true,
5-
"rootDir": ".",
65
"outFile": "dist/index.js"
76
},
87
"include": ["src"],

packages/types/tsconfig.json

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"extends": "../../tsconfig-base.json",
33
"compilerOptions": {
44
"composite": true,
5-
"rootDir": ".",
65
"outFile": "dist/index.js"
76
},
87
"include": ["src"],

tsconfig-base.json

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"moduleResolution": "bundler",
66
"lib": ["dom", "ES2016"],
77
"useDefineForClassFields": false,
8+
"rootDir": "packages",
89

910
"types": [],
1011

0 commit comments

Comments
 (0)