*Export function that returns a defineConfig
This commit is contained in:
parent
b32073e35c
commit
773f1b7b75
24
src/index.ts
24
src/index.ts
|
@ -1,18 +1,18 @@
|
|||
import { defineConfig } from "rollup";
|
||||
import { defineConfig, RollupOptions } from "rollup";
|
||||
import commonjs from "@rollup/plugin-commonjs";
|
||||
import { nodeResolve } from "@rollup/plugin-node-resolve";
|
||||
import { bundleNativeModulesPlugin } from "@lumeweb/rollup-plugin-bundle-native-modules";
|
||||
import typescript from "@rollup/plugin-typescript";
|
||||
import json from "@rollup/plugin-json";
|
||||
|
||||
const preset = defineConfig({
|
||||
plugins: [
|
||||
typescript(),
|
||||
json(),
|
||||
nodeResolve(),
|
||||
commonjs(),
|
||||
bundleNativeModulesPlugin(),
|
||||
],
|
||||
});
|
||||
|
||||
export default preset;
|
||||
export default function preset(): RollupOptions {
|
||||
return defineConfig({
|
||||
plugins: [
|
||||
typescript(),
|
||||
json(),
|
||||
nodeResolve(),
|
||||
commonjs(),
|
||||
bundleNativeModulesPlugin(),
|
||||
],
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue