Add free transfer limit to filesystem
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user