mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-06 23:49:26 +02:00
[Dev] Move typedoc settings to typedoc.json
and add tsdoc.json
https://github.com/pagefaultgames/pokerogue/pull/6102 * Move typedoc settings out of tsconfig * Create typedoc.json * Apply Biome * Add `tsdoc.json` for `@todo` and `@linkcode` --------- Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
This commit is contained in:
parent
583b3758c0
commit
268605a5e3
@ -47,11 +47,5 @@
|
|||||||
"outDir": "./build",
|
"outDir": "./build",
|
||||||
"noEmit": true
|
"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"]
|
"exclude": ["node_modules", "dist", "vite.config.ts", "vitest.config.ts", "vitest.workspace.ts"]
|
||||||
}
|
}
|
||||||
|
14
tsdoc.json
Normal file
14
tsdoc.json
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://developer.microsoft.com/en-us/json-schemas/tsdoc/v0/tsdoc.schema.json",
|
||||||
|
"noStandardTags": false,
|
||||||
|
"tagDefinitions": [
|
||||||
|
{
|
||||||
|
"tagName": "@todo",
|
||||||
|
"syntaxKind": "block"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tagName": "@linkcode",
|
||||||
|
"syntaxKind": "inline"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
7
typedoc.json
Normal file
7
typedoc.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"entryPoints": ["./src"],
|
||||||
|
"entryPointStrategy": "expand",
|
||||||
|
"exclude": ["**/*+.test.ts"],
|
||||||
|
"out": "typedoc",
|
||||||
|
"highlightLanguages": ["javascript", "json", "jsonc", "json5", "tsx", "typescript", "markdown"]
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user