mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
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" }
|
|
]
|
|
}
|