You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GlosSI/SteamTweaks/rollup.config.js

11 lines
246 B
JavaScript

import typescript from '@rollup/plugin-typescript';
export default {
input: 'src/Tweaks/Overlay/HideFPSCounter.ts',
output: {
file: 'dist/glossiTweaks.js',
sourcemap: "inline",
format: 'es',
},
plugins: [typescript()]
};