mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-15 13:29:40 +02:00

* develop: (40 commits) chore(deps-dev): bump typescript from 4.8.2 to 4.8.3 (#3446) chore(deps): bump actions/checkout from 2 to 3 (#3449) change wording of console log message (use comma) Moving out tests from mermaid.spec.js Fix for issue with setting the loglevel via numbers chore: update browsers list Limiting the interaction between the mermaid diagram and Mermaid to the diagramAPI Fix for broken tests chore(docs): Remove edit this page fix(git): support unusual prefixes in branch name formatting eslint fixes Creating detectors and moving out diagram specific code from the diagramAPI add eslint-disable no-console for file fix: Run precommit hook for doc.mts changes too chore: Updated doc files fix: Formatting issue (formatting only) sort imports just to force a new CI lint check ci: re-enable coveralls coverage upload build(dev-deps): remove unused `coveralls` ...
26 lines
952 B
JavaScript
26 lines
952 B
JavaScript
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
const path = require('path');
|
|
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
|
|
module.exports = {
|
|
testEnvironment: 'jsdom',
|
|
preset: 'ts-jest',
|
|
transform: {
|
|
'^.+\\.tsx?$': ['jest-esbuild', { banner: '"use strict";' }],
|
|
'^.+\\.jsx?$': ['jest-esbuild', { banner: '"use strict";' }],
|
|
'^.+\\.jison$': [
|
|
path.resolve(__dirname, './src/jison/transformer.js'),
|
|
{ 'token-stack': true },
|
|
],
|
|
},
|
|
coveragePathIgnorePatterns: [
|
|
'/node_modules/',
|
|
'^.+\\.jison$', // might be able to fix in future if .jison adds source-map support
|
|
],
|
|
transformIgnorePatterns: ['/node_modules/(?!dagre-d3-renderer/lib|khroma).*\\.js'],
|
|
testPathIgnorePatterns: ['/node_modules/', '.cache', './cypress'],
|
|
moduleNameMapper: {
|
|
'\\.(css|scss)$': 'identity-obj-proxy',
|
|
},
|
|
moduleFileExtensions: ['js', 'json', 'jsx', 'ts', 'tsx', 'node', 'jison'],
|
|
};
|