mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 15:44:06 -08:00
34df8b6238
Co-authored-by: Csaba Tuncsik <csaba@n8n.io>
19 lines
449 B
JSON
19 lines
449 B
JSON
{
|
|
"extends": ["../../tsconfig.json", "../../tsconfig.backend.json"],
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"composite": true,
|
|
"baseUrl": "src",
|
|
"paths": {
|
|
"@/*": ["./*"]
|
|
},
|
|
// TODO: remove all options below this line
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"include": ["src/**/*.ts", "test/**/*.ts"],
|
|
"references": [
|
|
{ "path": "../workflow/tsconfig.build.json" },
|
|
{ "path": "../@n8n/client-oauth2/tsconfig.build.json" }
|
|
]
|
|
}
|