Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
madmonl-starkware committed Nov 14, 2023
1 parent 1f1eafe commit d941f1c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { defineConfig } from 'vite';
import {defineConfig} from 'vite';
import dts from 'vite-plugin-dts';

export default defineConfig({
Expand All @@ -12,15 +12,15 @@ export default defineConfig({
lib: {
entry: 'src/js/index.ts',
name: '@starkware-industries/starkware-crypto-utils',
fileName: (format) => `index.${format}.js`,
fileName: format => `index.${format}.js`,
formats: ['cjs', 'es']
},
rollupOptions: {
external: [],
output: {
exports: 'named',
dir: 'dist',
},
},
},
dir: 'dist'
}
}
}
});

0 comments on commit d941f1c

Please sign in to comment.