12 lines
460 B
TypeScript
12 lines
460 B
TypeScript
import type {OutputOptions} from "rollup";
|
|
|
|
export const defaultOutput : OutputOptions = {
|
|
dir: 'output', // Output all files
|
|
format: 'es', // iifi and cjs should be added to tests
|
|
sourcemap: true,// Test if #sourcemapUrl is not accidentally included in the html-output
|
|
// Prevent hashes from being added (and screw up the snapshots)
|
|
chunkFileNames: '[name].js',
|
|
entryFileNames: '[name].js',
|
|
assetFileNames: '[name].[extname]',
|
|
};
|