Skip to content

Commit dd7d749

Browse files
committed
chore: wip
1 parent 2fac92c commit dd7d749

File tree

5 files changed

+19
-17
lines changed

5 files changed

+19
-17
lines changed

packages/bun-plugin/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ function normalizeConfig(options: PluginConfig, build: PluginConfig['build']): D
6161

6262
export type { DtsGenerationOption }
6363

64-
export default dts
64+
export default dts

packages/bun-plugin/tsconfig.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,5 @@
55
},
66
"include": [
77
"./src/**/*.ts"
8-
],
9-
"exclude": [
10-
"node_modules",
11-
"dist"
128
]
13-
}
9+
}

packages/dtsx/tsconfig.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,5 @@
66
},
77
"include": [
88
"src/**/*.ts"
9-
],
10-
"exclude": [
11-
"node_modules",
12-
"dist"
139
]
1410
}

packages/vite-plugin/tsconfig.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,5 @@
55
},
66
"include": [
77
"./src/**/*.ts"
8-
],
9-
"exclude": [
10-
"node_modules",
11-
"dist"
128
]
139
}

tsconfig.json

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,21 @@
3030
"forceConsistentCasingInFileNames": true,
3131
"isolatedDeclarations": true,
3232
"verbatimModuleSyntax": true,
33-
"skipDefaultLibCheck": true,
34-
"skipLibCheck": true
35-
}
33+
"skipLibCheck": true,
34+
"skipDefaultLibCheck": true
35+
},
36+
"include": [
37+
"packages/*/src/**/*.ts"
38+
],
39+
"exclude": [
40+
"node_modules",
41+
"**/node_modules",
42+
"**/node_modules/**",
43+
"dist",
44+
"**/dist",
45+
"**/dist/**",
46+
"**/*.d.ts",
47+
"**/build/**",
48+
"**/coverage/**"
49+
]
3650
}

0 commit comments

Comments
 (0)