pokerogue/tsconfig.json
Dmitriy K 2f81bd504c
[Test] Prevent tests from running if overrides are different from the default values (#2110)
* mock default overrides in test setup

* change beforeEach to beforeALl

* move some more enums into the enums directory

* replace modules that import i18n into overrides with modules that don't

* add pre tests and update vitest configs, scripts

* replace tabs with spaces

* fix vitest server port overlap warning

* add missing overrides and clean up workspace config

* change test name

* include spec files in main test suite
2024-07-11 18:22:22 +01:00

35 lines
686 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",
"exclude": "**/*+.test.ts",
"out": "typedoc"
},
"exclude": [
"node_modules",
"dist",
"vite.config.ts",
"vitest.config.ts",
"vitest.workspace.ts",
]
}