pokerogue/tsconfig.json
Devin Korb 53def01b51
Add unit testing support with vitest (#18)
* update loose files and add vitest

* update test scripts

* more support for vitest

* more test support

* update vscode settings
2024-03-30 20:47:47 -04:00

19 lines
353 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"esModuleInterop": true,
"strictNullChecks": false,
"sourceMap": true,
"rootDir": "./src",
"baseUrl": "./src",
"paths": {
"#app/*": ["*.ts"],
"#app": ["."]
},
"outDir": "./build",
"noEmit": true
}
}