mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-11-25 08:16:04 +00:00
dc30dd33b2
* moving enums * import updates * fix tsconfig paths importing (#2184) * reverse index.ts addition --------- Co-authored-by: Devin Korb <meepdarknessmeep@gmail.com>
27 lines
558 B
JSON
27 lines
558 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",
|
|
"out": "typedoc",
|
|
}
|
|
} |