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-11-09 06:25:00 -08:00
|
|
|
"rootDir": ".",
|
2022-09-09 09:00:18 -07:00
|
|
|
"types": ["node", "jest"],
|
2022-11-09 06:25:00 -08:00
|
|
|
"noEmit": true,
|
2022-11-11 08:05:21 -08:00
|
|
|
"preserveSymlinks": true,
|
2019-06-23 03:35:23 -07:00
|
|
|
"emitDecoratorMetadata": true,
|
2022-04-08 14:32:08 -07:00
|
|
|
"experimentalDecorators": true,
|
2022-11-09 06:25:00 -08:00
|
|
|
"baseUrl": "src",
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["./*"],
|
|
|
|
"@db/*": ["./databases/*"]
|
|
|
|
},
|
|
|
|
"tsBuildInfoFile": "dist/typecheck.tsbuildinfo",
|
2022-09-09 09:00:18 -07:00
|
|
|
// TODO: remove all options below this line
|
|
|
|
"strict": false,
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
"useUnknownInCatchVariables": false
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
2023-03-06 00:44:25 -08:00
|
|
|
"include": ["src/**/*.ts", "test/**/*.ts", "src/sso/saml/saml-schema-metadata-2.0.xsd"],
|
2022-11-09 06:25:00 -08:00
|
|
|
"references": [
|
|
|
|
{ "path": "../workflow/tsconfig.build.json" },
|
|
|
|
{ "path": "../core/tsconfig.build.json" }
|
|
|
|
]
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|