2019-06-23 03:35:23 -07:00
|
|
|
{
|
2023-08-01 08:32:43 -07:00
|
|
|
"extends": ["../../tsconfig.json", "../../tsconfig.backend.json"],
|
2019-06-23 03:35:23 -07:00
|
|
|
"compilerOptions": {
|
2022-09-09 09:00:18 -07:00
|
|
|
"rootDir": ".",
|
2022-11-09 06:25:00 -08:00
|
|
|
"baseUrl": "src",
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["./*"]
|
|
|
|
},
|
2023-09-29 04:26:06 -07:00
|
|
|
"tsBuildInfoFile": "dist/typecheck.tsbuildinfo",
|
2023-09-22 02:48:20 -07:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
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"],
|
2023-05-17 07:40:53 -07:00
|
|
|
"references": [
|
|
|
|
{ "path": "../workflow/tsconfig.build.json" },
|
|
|
|
{ "path": "../@n8n/client-oauth2/tsconfig.build.json" }
|
|
|
|
]
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|