mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
build: using cli to generate type declaration (#8265)
This commit is contained in:
parent
7f91b4a6bb
commit
387f2ac336
@ -5,11 +5,10 @@
|
|||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"module": "es/index.js",
|
"module": "es/index.js",
|
||||||
"style": "lib/index.css",
|
"style": "lib/index.css",
|
||||||
"typings": "types/index.d.ts",
|
"typings": "lib/index.d.ts",
|
||||||
"files": [
|
"files": [
|
||||||
"es",
|
"es",
|
||||||
"lib",
|
"lib",
|
||||||
"types",
|
|
||||||
"vetur"
|
"vetur"
|
||||||
],
|
],
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
"extends": "./tsconfig.json",
|
"extends": "./tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
"skipLibCheck": true,
|
"declarationDir": ".",
|
||||||
"declarationDir": "./types"
|
"emitDeclarationOnly": true
|
||||||
},
|
},
|
||||||
"include": ["src/**/*"],
|
"include": ["es/**/*", "lib/**/*"],
|
||||||
"exclude": ["**/demo/**", "**/test/**", "**/node_modules"]
|
"exclude": ["node_modules", "**/test/**/*", "**/demo/**/*"]
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
"module": "esnext",
|
"module": "esnext",
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
|
"skipLibCheck": true,
|
||||||
"noImplicitThis": true,
|
"noImplicitThis": true,
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
@ -13,5 +14,5 @@
|
|||||||
"@demo/*": ["docs/site/*"]
|
"@demo/*": ["docs/site/*"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"include": ["types/**/*", "docs/**/*", "src/**/*"]
|
"include": ["src/**/*", "types/**/*", "docs/**/*", "test/**/*"]
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user