mirror of
				https://github.com/pagefaultgames/pokerogue.git
				synced 2025-11-04 10:21:20 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			660 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			660 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
	"compilerOptions": {
 | 
						|
		"target": "ES2020",
 | 
						|
		"module": "ES2020",
 | 
						|
		"moduleResolution": "bundler",
 | 
						|
		"resolveJsonModule": true,
 | 
						|
		"esModuleInterop": true,
 | 
						|
		"strictNullChecks": false,
 | 
						|
		"sourceMap": false,
 | 
						|
		"strict": false,
 | 
						|
		"rootDir": "./src",
 | 
						|
		"baseUrl": "./src",
 | 
						|
		"paths": {
 | 
						|
			"#enums/*": ["./enums/*.ts"],
 | 
						|
			"#app/*": ["*.ts"],
 | 
						|
			"#app": ["."],
 | 
						|
			"#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"
 | 
						|
	]
 | 
						|
} |