2023-12-26 20:24:42 +01:00
|
|
|
const { typescript } = require("svelte-preprocess-esbuild")
|
|
|
|
const sveltePreprocess = require("svelte-preprocess")
|
2024-01-27 19:58:35 +01:00
|
|
|
|
2023-12-26 20:24:42 +01:00
|
|
|
module.exports = {
|
|
|
|
preprocess: [
|
|
|
|
typescript({
|
|
|
|
sourcemap: true,
|
|
|
|
}),
|
|
|
|
sveltePreprocess({
|
|
|
|
sourceMap: true,
|
2024-01-27 19:58:35 +01:00
|
|
|
//postcss: true,
|
2023-12-26 20:24:42 +01:00
|
|
|
typescript: false,
|
|
|
|
scss: {
|
|
|
|
includePaths: ["frontend/src/theme"],
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
}
|