vite-plugin-dts 3.0.0-beta.1 → 3.0.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,302 +1,302 @@
1
- <h1 align="center">vite-plugin-dts</h1>
2
-
3
- <p align="center">
4
- A Vite plugin that generates declaration files (<code>*.d.ts</code>) from <code>.ts(x)</code> or <code>.vue</code> source files when using Vite in <a href="https://vitejs.dev/guide/build.html#library-mode">library mode</a>.
5
- </p>
6
-
7
- <p align="center">
8
- <a href="https://www.npmjs.com/package/vite-plugin-dts">
9
- <img src="https://img.shields.io/npm/v/vite-plugin-dts?color=orange&label=" alt="version" />
10
- </a>
11
- </p>
12
-
13
- **English** | [中文](./README.zh-CN.md)
14
-
15
- ## Install
16
-
17
- ```sh
18
- pnpm add vite-plugin-dts -D
19
- ```
20
-
21
- ## Usage
22
-
23
- In `vite.config.ts`:
24
-
25
- ```ts
26
- import { resolve } from 'path'
27
- import { defineConfig } from 'vite'
28
- import dts from 'vite-plugin-dts'
29
-
30
- export default defineConfig({
31
- build: {
32
- lib: {
33
- entry: resolve(__dirname, 'src/index.ts'),
34
- name: 'MyLib',
35
- formats: ['es'],
36
- fileName: 'my-lib'
37
- }
38
- },
39
- plugins: [dts()]
40
- })
41
- ```
42
-
43
- In your component:
44
-
45
- ```vue
46
- <template>
47
- <div></div>
48
- </template>
49
-
50
- <script lang="ts">
51
- // using defineComponent for inferring types
52
- import { defineComponent } from 'vue'
53
-
54
- export default defineComponent({
55
- name: 'Component'
56
- })
57
- </script>
58
- ```
59
-
60
- ```vue
61
- <script setup lang="ts">
62
- // Need to access the defineProps returned value to
63
- // infer types although you never use the props directly
64
- const props = defineProps<{
65
- color: 'blue' | 'red'
66
- }>()
67
- </script>
68
-
69
- <template>
70
- <div>{{ color }}</div>
71
- </template>
72
- ```
73
-
74
- ## FAQ
75
-
76
- Here are some FAQ's and solutions.
77
-
78
- ### Missing some declaration files after build (before `1.7.0`)
79
-
80
- By default, the `skipDiagnostics` option is set to `true` which means type diagnostic will be skipped during the build process (some projects may have diagnostic tools such as `vue-tsc`). If there are some files with type errors which interrupt the build process, these files will not be emitted (declaration files won't be generated).
81
-
82
- If your project doesn't use type diagnostic tools, you can set `skipDiagnostics: false` and `logDiagnostics: true` to turn on diagnostic and logging features of this plugin. It will help you check the type errors during build and log error information to the terminal.
83
-
84
- ### Type error when using both `script` and `setup-script` in Vue component (before `3.0.0`)
85
-
86
- This is usually caused by using the `defineComponent` function in both `script` and `setup-script`. When `vue/compiler-sfc` compiles these files, the default export result from `script` gets merged with the parameter object of `defineComponent` from `setup-script`. This is incompatible with parameters and types returned from `defineComponent`, which results in a type error.
87
-
88
- Here is a simple [example](https://github.com/qmhc/vite-plugin-dts/blob/main/examples/vue/components/BothScripts.vue). You should remove the `defineComponent` which in `script` and export a native object directly.
89
-
90
- ### Type errors that are unable to infer types from packages in `node_modules`
91
-
92
- This is an existing issue when TypeScript infers types from packages located in `node_modules` through soft links (pnpm). Please refer to [this TypeScript issue](https://github.com/microsoft/TypeScript/issues/42873). The current workaround is to add `baseUrl` to your `tsconfig.json` and specify the `paths` for these packages:
93
-
94
- ```json
95
- {
96
- "compilerOptions": {
97
- "baseUrl": ".",
98
- "paths": {
99
- "third-lib": ["node_modules/third-lib"]
100
- }
101
- }
102
- }
103
- ```
104
-
105
- ## Options
106
-
107
- ```ts
108
- import type ts from 'typescript'
109
- import type { LogLevel } from 'vite'
110
-
111
- interface TransformWriteFile {
112
- filePath?: string
113
- content?: string
114
- }
115
-
116
- export interface PluginOptions {
117
- /**
118
- * Specify root directory
119
- *
120
- * By Default it base on 'root' of your Vite config, or `process.cwd()` if using Rollup
121
- */
122
- root?: string
123
-
124
- /**
125
- * Specify declaration files output directory
126
- *
127
- * Can be specified a array to output to multiple directories
128
- *
129
- * By Default it base on 'build.outDir' of your Vite config, or `outDir` of tsconfig.json if using Rollup
130
- */
131
- outDir?: string | string[]
132
-
133
- /**
134
- * Manually set the root path of the entry files, useful in monorepo
135
- *
136
- * The output path of each file will be calculated base on it
137
- *
138
- * By Default it is the smallest public path for all files
139
- */
140
- entryRoot?: string
141
-
142
- /**
143
- * Specify a CompilerOptions to override
144
- *
145
- * @default null
146
- */
147
- compilerOptions?: ts.CompilerOptions | null
148
-
149
- /**
150
- * Specify tsconfig.json path
151
- *
152
- * Plugin also resolve include and exclude files from tsconfig.json
153
- *
154
- * By default plugin will find config form root if not specify
155
- */
156
- tsconfigPath?: string
157
-
158
- /**
159
- * Set which paths should exclude when transform aliases
160
- *
161
- * @default []
162
- */
163
- aliasesExclude?: (string | RegExp)[]
164
-
165
- /**
166
- * Whether transform file name '.vue.d.ts' to '.d.ts'
167
- *
168
- * @default false
169
- */
170
- cleanVueFileName?: boolean
171
-
172
- /**
173
- * Whether transform dynamic import to static
174
- *
175
- * Force `true` when `rollupTypes` is effective
176
- *
177
- * eg. `import('vue').DefineComponent` to `import { DefineComponent } from 'vue'`
178
- *
179
- * @default false
180
- */
181
- staticImport?: boolean
182
-
183
- /**
184
- * Manual set include glob
185
- *
186
- * By Default it base on 'include' option of the tsconfig.json
187
- */
188
- include?: string | string[]
189
-
190
- /**
191
- * Manual set exclude glob
192
- *
193
- * By Default it base on 'exclude' option of the tsconfig.json, be 'node_module/**' when empty
194
- */
195
- exclude?: string | string[]
196
-
197
- /**
198
- * Whether remove those `import 'xxx'`
199
- *
200
- * @default true
201
- */
202
- clearPureImport?: boolean
203
-
204
- /**
205
- * Whether generate types entry file
206
- *
207
- * When `true` will from package.json types field if exists or `${outDir}/index.d.ts`
208
- *
209
- * Force `true` when `rollupTypes` is effective
210
- *
211
- * @default false
212
- */
213
- insertTypesEntry?: boolean
214
-
215
- /**
216
- * Set whether rollup declaration files after emit
217
- *
218
- * Power by `@microsoft/api-extractor`, it will start a new program which takes some time
219
- *
220
- * @default false
221
- */
222
- rollupTypes?: boolean
223
-
224
- /**
225
- * Bundled packages for `@microsoft/api-extractor`
226
- *
227
- * @default []
228
- * @see https://api-extractor.com/pages/configs/api-extractor_json/#bundledpackages
229
- */
230
- bundledPackages?: string[]
231
-
232
- /**
233
- * Whether copy .d.ts source files into `outDir`
234
- *
235
- * @default false
236
- * @remarks Before 2.0 it defaults to true
237
- */
238
- copyDtsFiles?: boolean
239
-
240
- /**
241
- * Specify the log level of plugin
242
- *
243
- * By Default it base on 'logLevel' option of your Vite config
244
- */
245
- logLevel?: LogLevel
246
-
247
- /**
248
- * Hook after diagnostic emitted
249
- *
250
- * According to the length to judge whether there is any type error
251
- *
252
- * @default () => {}
253
- */
254
- afterDiagnostic?: (diagnostics: readonly ts.Diagnostic[]) => void | Promise<void>
255
-
256
- /**
257
- * Hook before each declaration file is written
258
- *
259
- * You can transform declaration file's path and content through it
260
- *
261
- * The file will be skipped when return exact `false`
262
- *
263
- * @default () => {}
264
- */
265
- beforeWriteFile?: (filePath: string, content: string) => void | false | TransformWriteFile
266
-
267
- /**
268
- * Hook after built
269
- *
270
- * It wil be called after all declaration files are written
271
- *
272
- * @default () => {}
273
- */
274
- afterBuild?: () => void | Promise<void>
275
- }
276
- ```
277
-
278
- ## Contributors
279
-
280
- Thanks for all the contributions!
281
-
282
- <a href="https://github.com/qmhc/vite-plugin-dts/graphs/contributors">
283
- <img src="https://contrib.rocks/image?repo=qmhc/vite-plugin-dts" />
284
- </a>
285
-
286
- ## Example
287
-
288
- Clone and run the following script:
289
-
290
- ```sh
291
- pnpm run test:ts
292
- ```
293
-
294
- Then check `examples/ts/types`.
295
-
296
- Also Vue and React cases under `examples`.
297
-
298
- A real project using this plugin: [Vexip UI](https://github.com/vexip-ui/vexip-ui).
299
-
300
- ## License
301
-
302
- MIT License.
1
+ <h1 align="center">vite-plugin-dts</h1>
2
+
3
+ <p align="center">
4
+ A Vite plugin that generates declaration files (<code>*.d.ts</code>) from <code>.ts(x)</code> or <code>.vue</code> source files when using Vite in <a href="https://vitejs.dev/guide/build.html#library-mode">library mode</a>.
5
+ </p>
6
+
7
+ <p align="center">
8
+ <a href="https://www.npmjs.com/package/vite-plugin-dts">
9
+ <img src="https://img.shields.io/npm/v/vite-plugin-dts?color=orange&label=" alt="version" />
10
+ </a>
11
+ </p>
12
+
13
+ **English** | [中文](./README.zh-CN.md)
14
+
15
+ ## Install
16
+
17
+ ```sh
18
+ pnpm add vite-plugin-dts -D
19
+ ```
20
+
21
+ ## Usage
22
+
23
+ In `vite.config.ts`:
24
+
25
+ ```ts
26
+ import { resolve } from 'path'
27
+ import { defineConfig } from 'vite'
28
+ import dts from 'vite-plugin-dts'
29
+
30
+ export default defineConfig({
31
+ build: {
32
+ lib: {
33
+ entry: resolve(__dirname, 'src/index.ts'),
34
+ name: 'MyLib',
35
+ formats: ['es'],
36
+ fileName: 'my-lib'
37
+ }
38
+ },
39
+ plugins: [dts()]
40
+ })
41
+ ```
42
+
43
+ In your component:
44
+
45
+ ```vue
46
+ <template>
47
+ <div></div>
48
+ </template>
49
+
50
+ <script lang="ts">
51
+ // using defineComponent for inferring types
52
+ import { defineComponent } from 'vue'
53
+
54
+ export default defineComponent({
55
+ name: 'Component'
56
+ })
57
+ </script>
58
+ ```
59
+
60
+ ```vue
61
+ <script setup lang="ts">
62
+ // Need to access the defineProps returned value to
63
+ // infer types although you never use the props directly
64
+ const props = defineProps<{
65
+ color: 'blue' | 'red'
66
+ }>()
67
+ </script>
68
+
69
+ <template>
70
+ <div>{{ color }}</div>
71
+ </template>
72
+ ```
73
+
74
+ ## FAQ
75
+
76
+ Here are some FAQ's and solutions.
77
+
78
+ ### Missing some declaration files after build (before `1.7.0`)
79
+
80
+ By default, the `skipDiagnostics` option is set to `true` which means type diagnostic will be skipped during the build process (some projects may have diagnostic tools such as `vue-tsc`). If there are some files with type errors which interrupt the build process, these files will not be emitted (declaration files won't be generated).
81
+
82
+ If your project doesn't use type diagnostic tools, you can set `skipDiagnostics: false` and `logDiagnostics: true` to turn on diagnostic and logging features of this plugin. It will help you check the type errors during build and log error information to the terminal.
83
+
84
+ ### Type error when using both `script` and `setup-script` in Vue component (before `3.0.0`)
85
+
86
+ This is usually caused by using the `defineComponent` function in both `script` and `setup-script`. When `vue/compiler-sfc` compiles these files, the default export result from `script` gets merged with the parameter object of `defineComponent` from `setup-script`. This is incompatible with parameters and types returned from `defineComponent`, which results in a type error.
87
+
88
+ Here is a simple [example](https://github.com/qmhc/vite-plugin-dts/blob/main/examples/vue/components/BothScripts.vue). You should remove the `defineComponent` which in `script` and export a native object directly.
89
+
90
+ ### Type errors that are unable to infer types from packages in `node_modules`
91
+
92
+ This is an existing issue when TypeScript infers types from packages located in `node_modules` through soft links (pnpm). Please refer to [this TypeScript issue](https://github.com/microsoft/TypeScript/issues/42873). The current workaround is to add `baseUrl` to your `tsconfig.json` and specify the `paths` for these packages:
93
+
94
+ ```json
95
+ {
96
+ "compilerOptions": {
97
+ "baseUrl": ".",
98
+ "paths": {
99
+ "third-lib": ["node_modules/third-lib"]
100
+ }
101
+ }
102
+ }
103
+ ```
104
+
105
+ ## Options
106
+
107
+ ```ts
108
+ import type ts from 'typescript'
109
+ import type { LogLevel } from 'vite'
110
+
111
+ interface TransformWriteFile {
112
+ filePath?: string
113
+ content?: string
114
+ }
115
+
116
+ export interface PluginOptions {
117
+ /**
118
+ * Specify root directory
119
+ *
120
+ * By Default it base on 'root' of your Vite config, or `process.cwd()` if using Rollup
121
+ */
122
+ root?: string
123
+
124
+ /**
125
+ * Specify declaration files output directory
126
+ *
127
+ * Can be specified a array to output to multiple directories
128
+ *
129
+ * By Default it base on 'build.outDir' of your Vite config, or `outDir` of tsconfig.json if using Rollup
130
+ */
131
+ outDir?: string | string[]
132
+
133
+ /**
134
+ * Manually set the root path of the entry files, useful in monorepo
135
+ *
136
+ * The output path of each file will be calculated base on it
137
+ *
138
+ * By Default it is the smallest public path for all files
139
+ */
140
+ entryRoot?: string
141
+
142
+ /**
143
+ * Specify a CompilerOptions to override
144
+ *
145
+ * @default null
146
+ */
147
+ compilerOptions?: ts.CompilerOptions | null
148
+
149
+ /**
150
+ * Specify tsconfig.json path
151
+ *
152
+ * Plugin also resolve include and exclude files from tsconfig.json
153
+ *
154
+ * By default plugin will find config form root if not specify
155
+ */
156
+ tsconfigPath?: string
157
+
158
+ /**
159
+ * Set which paths should exclude when transform aliases
160
+ *
161
+ * @default []
162
+ */
163
+ aliasesExclude?: (string | RegExp)[]
164
+
165
+ /**
166
+ * Whether transform file name '.vue.d.ts' to '.d.ts'
167
+ *
168
+ * @default false
169
+ */
170
+ cleanVueFileName?: boolean
171
+
172
+ /**
173
+ * Whether transform dynamic import to static
174
+ *
175
+ * Force `true` when `rollupTypes` is effective
176
+ *
177
+ * eg. `import('vue').DefineComponent` to `import { DefineComponent } from 'vue'`
178
+ *
179
+ * @default false
180
+ */
181
+ staticImport?: boolean
182
+
183
+ /**
184
+ * Manual set include glob
185
+ *
186
+ * By Default it base on 'include' option of the tsconfig.json
187
+ */
188
+ include?: string | string[]
189
+
190
+ /**
191
+ * Manual set exclude glob
192
+ *
193
+ * By Default it base on 'exclude' option of the tsconfig.json, be 'node_module/**' when empty
194
+ */
195
+ exclude?: string | string[]
196
+
197
+ /**
198
+ * Whether remove those `import 'xxx'`
199
+ *
200
+ * @default true
201
+ */
202
+ clearPureImport?: boolean
203
+
204
+ /**
205
+ * Whether generate types entry file
206
+ *
207
+ * When `true` will from package.json types field if exists or `${outDir}/index.d.ts`
208
+ *
209
+ * Force `true` when `rollupTypes` is effective
210
+ *
211
+ * @default false
212
+ */
213
+ insertTypesEntry?: boolean
214
+
215
+ /**
216
+ * Set whether rollup declaration files after emit
217
+ *
218
+ * Power by `@microsoft/api-extractor`, it will start a new program which takes some time
219
+ *
220
+ * @default false
221
+ */
222
+ rollupTypes?: boolean
223
+
224
+ /**
225
+ * Bundled packages for `@microsoft/api-extractor`
226
+ *
227
+ * @default []
228
+ * @see https://api-extractor.com/pages/configs/api-extractor_json/#bundledpackages
229
+ */
230
+ bundledPackages?: string[]
231
+
232
+ /**
233
+ * Whether copy .d.ts source files into `outDir`
234
+ *
235
+ * @default false
236
+ * @remarks Before 2.0 it defaults to true
237
+ */
238
+ copyDtsFiles?: boolean
239
+
240
+ /**
241
+ * Specify the log level of plugin
242
+ *
243
+ * By Default it base on 'logLevel' option of your Vite config
244
+ */
245
+ logLevel?: LogLevel
246
+
247
+ /**
248
+ * Hook after diagnostic emitted
249
+ *
250
+ * According to the length to judge whether there is any type error
251
+ *
252
+ * @default () => {}
253
+ */
254
+ afterDiagnostic?: (diagnostics: readonly ts.Diagnostic[]) => void | Promise<void>
255
+
256
+ /**
257
+ * Hook before each declaration file is written
258
+ *
259
+ * You can transform declaration file's path and content through it
260
+ *
261
+ * The file will be skipped when return exact `false`
262
+ *
263
+ * @default () => {}
264
+ */
265
+ beforeWriteFile?: (filePath: string, content: string) => void | false | TransformWriteFile
266
+
267
+ /**
268
+ * Hook after built
269
+ *
270
+ * It wil be called after all declaration files are written
271
+ *
272
+ * @default () => {}
273
+ */
274
+ afterBuild?: () => void | Promise<void>
275
+ }
276
+ ```
277
+
278
+ ## Contributors
279
+
280
+ Thanks for all the contributions!
281
+
282
+ <a href="https://github.com/qmhc/vite-plugin-dts/graphs/contributors">
283
+ <img src="https://contrib.rocks/image?repo=qmhc/vite-plugin-dts" />
284
+ </a>
285
+
286
+ ## Example
287
+
288
+ Clone and run the following script:
289
+
290
+ ```sh
291
+ pnpm run test:ts
292
+ ```
293
+
294
+ Then check `examples/ts/types`.
295
+
296
+ Also Vue and React cases under `examples`.
297
+
298
+ A real project using this plugin: [Vexip UI](https://github.com/vexip-ui/vexip-ui).
299
+
300
+ ## License
301
+
302
+ MIT License.