feat: update package.json and tsconfig.app.json to correct type definitions and enable declaration file generation
All checks were successful
Publish to npm / publish (push) Successful in 24s
All checks were successful
Publish to npm / publish (push) Successful in 24s
This commit is contained in:
parent
dc62c0e13a
commit
593ef1b2e8
|
@ -22,14 +22,14 @@
|
|||
"vue-tsc": "^2.2.0"
|
||||
},
|
||||
"exports": {
|
||||
"types": "./dist_types/src/index.js",
|
||||
"types": "./dist_types/src/index.d.ts",
|
||||
"import": "./dist/datenel-vue3.js",
|
||||
"require": "./dist/datenel-vue3.umd.cjs",
|
||||
"default": "./dist/datenel-vue3.umd.cjs"
|
||||
},
|
||||
"main": "dist/datenel-vue3.umd.cjs",
|
||||
"module": "dist/datenel-vue3.js",
|
||||
"types": "dist_types/src/index.js",
|
||||
"types": "dist_types/src/index.d.ts",
|
||||
"files": [
|
||||
"dist",
|
||||
"dist_types"
|
||||
|
|
|
@ -13,7 +13,9 @@
|
|||
"resolveJsonModule": true,
|
||||
"esModuleInterop": true,
|
||||
"lib": ["esnext", "DOM", "dom.iterable", "scripthost"],
|
||||
"skipLibCheck": true
|
||||
"skipLibCheck": true,
|
||||
"declaration": true,
|
||||
"emitDeclarationOnly": true,
|
||||
},
|
||||
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "playground/**/*.ts", "playground/**/*.d.ts", "playground/**/*.tsx", "playground/**/*.vue"]
|
||||
}
|
Loading…
Reference in New Issue
Block a user