mirror of
				https://github.com/prometheus/prometheus.git
				synced 2025-10-31 00:11:23 +01:00 
			
		
		
		
	* bump codemirror to v0.20.x and lezer to v.0.16.x Signed-off-by: Augustin Husson <husson.augustin@gmail.com> * bump codemirror to v6 and lezer to v1 Signed-off-by: Augustin Husson <husson.augustin@gmail.com> * stop treating warning as error for UI Signed-off-by: Augustin Husson <husson.augustin@gmail.com>
		
			
				
	
	
		
			19 lines
		
	
	
		
			531 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			531 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
 | |
| module.exports = {
 | |
|     preset: 'ts-jest',
 | |
|     extensionsToTreatAsEsm: ['.ts'],
 | |
|     testEnvironment: 'node',
 | |
|     setupFiles: [
 | |
|         './setupJest.cjs'
 | |
|     ],
 | |
|     globals: {
 | |
|         'ts-jest': {
 | |
|             useESM: true,
 | |
|         },
 | |
|     },
 | |
|     moduleNameMapper: {
 | |
|         'lezer-promql': '<rootDir>/../../node_modules/@prometheus-io/lezer-promql/dist/index.cjs'
 | |
|     },
 | |
|     transformIgnorePatterns: ["<rootDir>/../../node_modules/(?!@prometheus-io/lezer-promql)/"]
 | |
| };
 |