mirror of
https://github.com/project-gauntlet/gauntlet.git
synced 2025-12-23 10:35:53 +00:00
20 lines
387 B
TypeScript
20 lines
387 B
TypeScript
import typescript from '@rollup/plugin-typescript';
|
|
import { defineConfig } from "rollup";
|
|
|
|
export default defineConfig({
|
|
input: [
|
|
'src/main.ts'
|
|
],
|
|
output: [
|
|
{
|
|
dir: 'dist',
|
|
format: 'esm',
|
|
sourcemap: 'inline'
|
|
}
|
|
],
|
|
plugins: [
|
|
typescript({
|
|
tsconfig: './tsconfig.json',
|
|
}),
|
|
]
|
|
})
|