Skip to content

Commit 68e256f

Browse files
authored
Merge pull request #12 from FallingCeilingS/v0.1.2/type-emit
Clean up dist folder
2 parents 19be5b4 + d44dc07 commit 68e256f

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.vscode
22
public
33
examples
4+
build
45
.editorconfig
56
babel.config.js
67
.eslintrc.js

build/rollup.config.base.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ export default {
3939
}),
4040
typescript({
4141
tsconfig: path.resolve(__dirname, "../tsconfig.json"),
42+
tsconfigOverride: {
43+
compilerOptions: { declaration: false },
44+
},
4245
}),
4346
commonjs(),
4447
css({

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "vue-virtualised",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"private": false,
55
"description": "Vue components developed by Vue.js 3.0 for efficiently rendering large scrollable lists and hierarchical data. vue-virtualised is able to render and update 1 million nodes within a few seconds in front-end.",
66
"author": {
77
"name": "Junxiang Chen",
88
"email": "chenfrey920417@outlook.com",
99
"url": "https://github.com/FallingCeilingS"
1010
},
11-
"types": "vue-virtualised.d.ts",
11+
"types": "src/types/vue-virtualised.d.ts",
1212
"scripts": {
1313
"serve": "vue-cli-service serve",
1414
"build": "npm run build:umd && npm run build:es && npm run build:browser",

0 commit comments

Comments
 (0)