mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-11-25 00:06:18 +00:00
378ce95636
* 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",
|
|
}
|
|
} |