n8n/packages/nodes-base/tsconfig.json
कारतोफ्फेलस्क्रिप्ट™ 9f87cc25a0
feat(Email Trigger (IMAP) Node): Migrate from imap-simple to @n8n/imap (#8899)
Co-authored-by: Jonathan Bennetts <jonathan.bennetts@gmail.com>
2024-04-09 11:33:10 +02:00

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
}
}
}
}