Prepare sliders, need to be fully completed and tested

This commit is contained in:
2025-11-28 14:27:45 +01:00
parent 283a1a4b4d
commit 2c470625a7
16 changed files with 1375 additions and 10 deletions

31
vite.config.ts Normal file
View File

@@ -0,0 +1,31 @@
import {
defineConfig
} from 'vite';
import dts from 'vite-plugin-dts';
import {
resolve
} from 'node:path';
import vue from '@vitejs/plugin-vue';
// https://vitejs.dev/config/
export default defineConfig( {
'plugins': [
vue(),
dts()
],
'build': {
'lib': {
'entry': resolve( __dirname, 'src/index.ts' ),
'name': 'TestComponent',
'fileName': 'test-component',
},
'rollupOptions': {
'external': [ 'vue' ],
'output': {
'globals': {
'vue': 'Vue',
},
},
},
},
} );