diff --git a/package.json b/package.json index e79d7cc..38eeafe 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@xsoulspace/vuefer", "description": "vuefer just a way to write Vue3 styled like Flutter with Tailwind CSS", - "version": "0.8.2", + "version": "0.8.3", "private": false, "author": { "name": "Anton Malofeev", diff --git a/tsconfig.json b/tsconfig.json index a5a5660..96db260 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,6 +10,7 @@ "resolveJsonModule": true, "esModuleInterop": true, "declaration": true, + "declarationMap": true, "baseUrl": ".", "importHelpers": true, "skipLibCheck": true, diff --git a/vite.config.ts b/vite.config.ts index 0dcb6a7..9009bce 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -45,15 +45,15 @@ export default defineConfig({ rollupOptions: { // make sure to externalize deps that shouldn't be bundled // into your library - external: ['vue'], + // external: ['vue'], plugins: [], output: { dir: './dist', - // Provide global variables to use in the UMD build - // for externalized deps - globals: { - vue: 'Vue', - }, + // // Provide global variables to use in the UMD build + // // for externalized deps + // globals: { + // vue: 'Vue', + // }, }, }, },