0
Fork 0
mirror of https://github.com/penpot/penpot-plugins.git synced 2025-01-07 15:39:49 -05:00
penpot-plugins/libs/plugins-runtime/vite.config.ts

74 lines
1.8 KiB
TypeScript
Raw Permalink Normal View History

2024-02-01 08:08:51 -05:00
/// <reference types='vitest' />
import { defineConfig } from 'vite';
import dts from 'vite-plugin-dts';
import * as path from 'path';
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
import checker from 'vite-plugin-checker';
2024-02-01 08:08:51 -05:00
export default defineConfig({
root: __dirname,
cacheDir: '../node_modules/.vite/plugins-runtime',
plugins: [
nxViteTsPaths(),
dts({
entryRoot: 'src',
tsConfigFilePath: path.join(__dirname, 'tsconfig.lib.json'),
skipDiagnostics: true,
}),
checker({
typescript: {
buildMode: true,
},
}),
2024-02-01 08:08:51 -05:00
],
// Uncomment this if you are using workers.
// worker: {
// plugins: [ nxViteTsPaths() ],
// },
// Configuration for building your library.
// See: https://vitejs.dev/guide/build.html#library-mode
build: {
2024-02-19 03:14:48 -05:00
outDir: '../../dist/libs/plugins-runtime',
2024-02-01 08:08:51 -05:00
reportCompressedSize: true,
commonjsOptions: {
transformMixedEsModules: true,
},
lib: {
// Could also be a dictionary or array of multiple entry points.
entry: 'src/index.ts',
name: 'plugins-runtime',
fileName: 'index',
// Change this to the formats you want to support.
// Don't forget to update your package.json as well.
formats: ['es'],
},
rollupOptions: {
// External packages that should not be bundled into your library.
external: [],
},
2024-03-05 02:42:41 -05:00
sourcemap: true,
2024-02-01 08:08:51 -05:00
},
preview: {
host: '0.0.0.0',
port: 4200,
},
2024-02-01 08:08:51 -05:00
test: {
2024-06-03 01:25:52 -05:00
watch: false,
2024-02-01 08:08:51 -05:00
globals: true,
cache: {
dir: '../node_modules/.vitest',
},
2024-03-05 05:36:56 -05:00
environment: 'happy-dom',
2024-02-01 08:08:51 -05:00
include: ['src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
reporters: ['default'],
coverage: {
reportsDirectory: '../coverage/plugins-runtime',
provider: 'v8',
},
},
});