init
This commit is contained in:
16
tsup.config.ts
Normal file
16
tsup.config.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import { defineConfig } from 'tsup';
|
||||
|
||||
export default defineConfig({
|
||||
entry: ['src/query-mark.ts'],
|
||||
|
||||
splitting: false,
|
||||
sourcemap: false,
|
||||
clean: true,
|
||||
format: 'esm',
|
||||
dts: true,
|
||||
outDir: 'dist',
|
||||
tsconfig: 'tsconfig.json',
|
||||
define: {
|
||||
IS_BROWSER: 'false',
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user