mirror of
				https://github.com/pagefaultgames/pokerogue.git
				synced 2025-11-03 18:01:23 +01:00 
			
		
		
		
	* Adds TypeDoc as a Valid Doc Generator Run `npm install typedoc --save-dev` then Run `npx typedoc` * Rename Revert * Add Script
		
			
				
	
	
		
			25 lines
		
	
	
		
			494 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			494 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
	"compilerOptions": {
 | 
						|
		"target": "ES2020",
 | 
						|
		"module": "ES2020",
 | 
						|
		"moduleResolution": "Bundler",
 | 
						|
		"resolveJsonModule": true,
 | 
						|
		"esModuleInterop": true,
 | 
						|
		"strictNullChecks": false,
 | 
						|
		"sourceMap": false,
 | 
						|
		"strict": false,
 | 
						|
		"rootDir": "./src",
 | 
						|
		"baseUrl": "./src",
 | 
						|
		"paths": {
 | 
						|
			"#app/*": ["*.ts"],
 | 
						|
			"#app": ["."]
 | 
						|
		},
 | 
						|
		"outDir": "./build",
 | 
						|
		"noEmit": true
 | 
						|
	},
 | 
						|
	"typedocOptions": {
 | 
						|
        "entryPoints": ["src/"],
 | 
						|
		"entryPointStrategy": "expand",
 | 
						|
        "out": "typedoc",
 | 
						|
    }
 | 
						|
} |