mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
9f87cc25a0
Co-authored-by: Jonathan Bennetts <jonathan.bennetts@gmail.com>
28 lines
716 B
JSON
28 lines
716 B
JSON
{
|
|
"extends": ["../../tsconfig.json", "../../tsconfig.backend.json"],
|
|
"compilerOptions": {
|
|
"lib": ["dom", "es2020", "es2022.error"],
|
|
"paths": {
|
|
"@test/*": ["./test/*"],
|
|
"@utils/*": ["./utils/*"]
|
|
},
|
|
"tsBuildInfoFile": "dist/typecheck.tsbuildinfo",
|
|
// TODO: remove all options below this line
|
|
"noImplicitReturns": false,
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"include": ["credentials/**/*.ts", "nodes/**/*.ts", "test/**/*.ts", "utils/**/*.ts"],
|
|
"references": [
|
|
{ "path": "../@n8n/imap/tsconfig.build.json" },
|
|
{ "path": "../workflow/tsconfig.build.json" },
|
|
{ "path": "../core/tsconfig.build.json" }
|
|
],
|
|
"tsc-alias": {
|
|
"replacers": {
|
|
"base-url": {
|
|
"enabled": false
|
|
}
|
|
}
|
|
}
|
|
}
|