2023-07-13 13:12:19 +02:00
|
|
|
const { typescript } = require("svelte-preprocess-esbuild")
|
|
|
|
const sveltePreprocess = require("svelte-preprocess")
|
2023-07-13 16:28:54 +02:00
|
|
|
|
2023-07-13 13:12:19 +02:00
|
|
|
module.exports = {
|
|
|
|
preprocess: [
|
|
|
|
typescript({
|
|
|
|
sourcemap: true,
|
|
|
|
}),
|
|
|
|
sveltePreprocess({
|
|
|
|
sourceMap: true,
|
2023-07-13 16:28:54 +02:00
|
|
|
//postcss: true,
|
2023-07-13 13:12:19 +02:00
|
|
|
typescript: false,
|
|
|
|
scss: {
|
|
|
|
includePaths: ["frontend/src/theme"],
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
}
|