mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
34df8b6238
Co-authored-by: Csaba Tuncsik <csaba@n8n.io>
26 lines
615 B
JSON
26 lines
615 B
JSON
{
|
|
"extends": ["../../tsconfig.json", "../../tsconfig.backend.json"],
|
|
"compilerOptions": {
|
|
"lib": ["dom", "es2020", "es2022.error"],
|
|
"paths": {
|
|
"@test/*": ["./test/*"],
|
|
"@utils/*": ["./utils/*"]
|
|
},
|
|
// TODO: remove all options below this line
|
|
"noImplicitReturns": false,
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"include": ["credentials/**/*.ts", "nodes/**/*.ts", "test/**/*.ts", "utils/**/*.ts"],
|
|
"references": [
|
|
{ "path": "../workflow/tsconfig.build.json" },
|
|
{ "path": "../core/tsconfig.build.json" }
|
|
],
|
|
"tsc-alias": {
|
|
"replacers": {
|
|
"base-url": {
|
|
"enabled": false
|
|
}
|
|
}
|
|
}
|
|
}
|