mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-13 05:15:17 +00:00
29 lines
701 B
JSON
29 lines
701 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ES2020",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"strictNullChecks": true,
|
|
"sourceMap": false,
|
|
"strict": false,
|
|
"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"]
|
|
}
|