build: using cli to generate type declaration (#8265)

This commit is contained in:
neverland 2021-03-04 15:42:36 +08:00 committed by GitHub
parent 7f91b4a6bb
commit 387f2ac336
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

View File

@ -5,11 +5,10 @@
"main": "lib/index.js",
"module": "es/index.js",
"style": "lib/index.css",
"typings": "types/index.d.ts",
"typings": "lib/index.d.ts",
"files": [
"es",
"lib",
"types",
"vetur"
],
"publishConfig": {

View File

@ -2,9 +2,9 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"declaration": true,
"skipLibCheck": true,
"declarationDir": "./types"
"declarationDir": ".",
"emitDeclarationOnly": true
},
"include": ["src/**/*"],
"exclude": ["**/demo/**", "**/test/**", "**/node_modules"]
"include": ["es/**/*", "lib/**/*"],
"exclude": ["node_modules", "**/test/**/*", "**/demo/**/*"]
}

View File

@ -6,6 +6,7 @@
"module": "esnext",
"strict": true,
"allowJs": true,
"skipLibCheck": true,
"noImplicitThis": true,
"esModuleInterop": true,
"moduleResolution": "node",
@ -13,5 +14,5 @@
"@demo/*": ["docs/site/*"]
}
},
"include": ["types/**/*", "docs/**/*", "src/**/*"]
"include": ["src/**/*", "types/**/*", "docs/**/*", "test/**/*"]
}