2.0 first commit

This commit is contained in:
louisnw
2024-03-30 15:38:34 +00:00
parent a91ea493d7
commit e9f21b3b0e
69 changed files with 4081 additions and 2107 deletions

17
rollup.config.js Normal file
View File

@ -0,0 +1,17 @@
import typescript from '@rollup/plugin-typescript';
import terser from '@rollup/plugin-terser';
export default [
{
input: 'src/general/handler.ts',
output: {
file: 'dist/bundle.js',
format: 'es',
},
external: ['lightweight-charts'],
plugins: [
typescript(),
terser(),
],
},
];