2019-06-23 03:35:23 -07:00
|
|
|
{
|
2022-09-09 09:00:18 -07:00
|
|
|
"extends": "../../tsconfig.json",
|
2019-06-23 03:35:23 -07:00
|
|
|
"compilerOptions": {
|
2022-09-09 09:00:18 -07:00
|
|
|
"rootDir": ".",
|
|
|
|
"types": ["node", "jest"],
|
2022-11-09 06:25:00 -08:00
|
|
|
"composite": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"baseUrl": "src",
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["./*"]
|
|
|
|
},
|
|
|
|
"tsBuildInfoFile": "dist/typecheck.tsbuildinfo",
|
2022-09-09 09:00:18 -07:00
|
|
|
// TODO: remove all options below this line
|
|
|
|
"useUnknownInCatchVariables": false
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
2022-11-09 06:25:00 -08:00
|
|
|
"include": ["src/**/*.ts", "test/**/*.ts"]
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|