diff --git a/pwa.rollup.config.mjs b/pwa.rollup.config.mjs index 27ba2a0..cabae7b 100644 --- a/pwa.rollup.config.mjs +++ b/pwa.rollup.config.mjs @@ -10,10 +10,7 @@ export default { preferConst: true, strict: true, }, - plugins: [ - typescript({ sourceMap: false, include: "**/service-worker.ts", lib: ["WebWorker"] }), - production && terser({ output: { comments: false } }), - ], + plugins: [typescript({ tsconfig: "src/pwa/tsconfig.json" }), production && terser({ output: { comments: false } })], watch: { clearScreen: false, },