mirror of
				https://github.com/mermaid-js/mermaid.git
				synced 2025-11-03 20:34:20 +01:00 
			
		
		
		
	Add eslint rules to check for unhandled promises Fix all existing unhandled promise issues
		
			
				
	
	
		
			10 lines
		
	
	
		
			309 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			309 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
  // extend your base config to share compilerOptions, etc
 | 
						|
  "extends": "./tsconfig.json",
 | 
						|
  "compilerOptions": {
 | 
						|
    // ensure that nobody can accidentally use this config for a build
 | 
						|
    "noEmit": true
 | 
						|
  },
 | 
						|
  "include": ["packages", "tests", "scripts", "cypress", "__mocks__", "./.eslintrc.cjs", "./*"]
 | 
						|
}
 |