mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 08:43:53 +01:00
6b7be9f87b
Cypress and Jest both define "expect", but they come from different libraries (Cypress uses Chai, Jest uses its own thing). So we can't include both of them in the tsconfig.json. Conveniently, however, we don't need any of the test code to be part of the main project, so it suffices to give cypress its own tsconfig.json file. That being done, adding "jest" to the global types lets us remove all those imports.
19 lines
405 B
JSON
19 lines
405 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react",
|
|
"module": "commonjs",
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "es2019",
|
|
"types": ["jest", "node"]
|
|
},
|
|
"include": ["src/**/*", "test/**/*"],
|
|
"exclude": ["test/cypress/**/*"]
|
|
}
|