mirror of
				https://github.com/pagefaultgames/pokerogue.git
				synced 2025-11-04 10:21:20 +01:00 
			
		
		
		
	* Added and enforced `no-fallthrough` * Fixed errors * Fix package.json * Moved vule to biom * Fixed stuff * Added workspace files to .gitignore for anyone who wants to do this stuff * reverted accidental gitignore changes * Update biome.jsonc Co-authored-by: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> * Update biome.jsonc Co-authored-by: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> * Update pokemon-species.ts * Update biome.jsonc to apply reviews * Fixed package.json * Fix typo --------- Co-authored-by: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
		
			
				
	
	
		
			29 lines
		
	
	
		
			733 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			733 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
  "compilerOptions": {
 | 
						|
    "target": "ES2020",
 | 
						|
    "module": "ES2020",
 | 
						|
    "moduleResolution": "bundler",
 | 
						|
    "resolveJsonModule": true,
 | 
						|
    "esModuleInterop": true,
 | 
						|
    "strictNullChecks": true,
 | 
						|
    "sourceMap": false,
 | 
						|
    "strict": false, // TODO: Enable this eventually
 | 
						|
    "rootDir": ".",
 | 
						|
    "baseUrl": "./src",
 | 
						|
    "paths": {
 | 
						|
      "#enums/*": ["./enums/*.ts"],
 | 
						|
      "#app/*": ["*.ts"],
 | 
						|
      "#test/*": ["../test/*.ts"]
 | 
						|
    },
 | 
						|
    "outDir": "./build",
 | 
						|
    "noEmit": true
 | 
						|
  },
 | 
						|
  "typedocOptions": {
 | 
						|
    "entryPoints": ["./src"],
 | 
						|
    "entryPointStrategy": "expand",
 | 
						|
    "exclude": "**/*+.test.ts",
 | 
						|
    "out": "typedoc"
 | 
						|
  },
 | 
						|
  "exclude": ["node_modules", "dist", "vite.config.ts", "vitest.config.ts", "vitest.workspace.ts"]
 | 
						|
}
 |