diff --git a/rollup.config.mjs b/rollup.config.mjs index fb0915928e..269d548d6a 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -18,7 +18,7 @@ import commonjs from '@rollup/plugin-commonjs'; // at least, needed to bundle mx import resolve from '@rollup/plugin-node-resolve'; import terser from '@rollup/plugin-terser'; import cleanup from 'rollup-plugin-cleanup'; -// eslint-disable-next-line import/no-unresolved +// eslint-disable-next-line import/no-unresolved -- The package is malformed. So, the rule doesn't resolve it. import externals from 'rollup-plugin-node-externals'; import sizes from 'rollup-plugin-sizes'; import typescript from 'rollup-plugin-typescript2'; diff --git a/scripts/generate-types-for-not-supported-ts-versions.mjs b/scripts/generate-types-for-not-supported-ts-versions.mjs index e5fe045b6d..646aaaf2e8 100644 --- a/scripts/generate-types-for-not-supported-ts-versions.mjs +++ b/scripts/generate-types-for-not-supported-ts-versions.mjs @@ -16,9 +16,6 @@ limitations under the License. import * as fs from 'node:fs'; -// generate warning when running with Node 18 -// (node:75278) ExperimentalWarning: Importing JSON modules is an experimental feature. This feature could change at any time -import packageJSON from '../package.json' assert { type: 'json' }; import { getTypeFilesInformation } from './shared/types-info.mjs'; diff --git a/test/typescript-support/src/index.ts b/test/typescript-support/src/index.ts index 838f454e3d..b2ce04cf09 100644 --- a/test/typescript-support/src/index.ts +++ b/test/typescript-support/src/index.ts @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -// eslint-disable-next-line import/no-unresolved +// eslint-disable-next-line import/no-unresolved -- The bpmn-visualization package may not have been built prior running eslint (it happens when running GitHub Actions) import { BpmnVisualization } from 'bpmn-visualization'; const bpmnVisualization = new BpmnVisualization({ container: 'bpmn-container' });