From 325ccf7494a6faeb1d37e7df8e3315b95eff135c Mon Sep 17 00:00:00 2001 From: Dave Lambley Date: Fri, 24 Sep 2021 12:56:31 +0100 Subject: [PATCH] Default to strict mode, as recommended https://rollupjs.org/guide/en/#outputstrict --- npm/rollup.config.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/npm/rollup.config.js b/npm/rollup.config.js index 5670728cfe..a900784945 100644 --- a/npm/rollup.config.js +++ b/npm/rollup.config.js @@ -4,9 +4,6 @@ import * as fs from 'fs'; export default { name: 'Janus', input: 'module.js', - output: { - strict: false - }, plugins: [ replace({ JANUS_CODE: fs.readFileSync('../html/janus.js', 'utf-8'),