Add free transfer limit to filesystem

This commit is contained in:
2024-09-05 17:28:31 +02:00
parent 04efcb6505
commit 51afa2615c
30 changed files with 125 additions and 64 deletions

View File

@@ -5,6 +5,7 @@ import livereload from 'rollup-plugin-livereload';
import terser from '@rollup/plugin-terser';
import babel from '@rollup/plugin-babel'
import typescript from '@rollup/plugin-typescript'
import includePaths from 'rollup-plugin-includepaths';
import { sveltePreprocess } from 'svelte-preprocess';
const production = !process.env.ROLLUP_WATCH;
@@ -39,7 +40,7 @@ export default [
}),
babel({
extensions: [".js", ".html", ".svelte"],
extensions: [".js", ".ts", ".html", ".svelte"],
babelHelpers: "bundled",
}),
@@ -59,6 +60,9 @@ export default [
compilerOptions: { lib: ["es2015", "dom"] },
verbatimModuleSyntax: true,
}),
includePaths({
paths: ["."],
}),
// In dev mode, call `npm run start` once
// the bundle has been generated