n8n/packages/nodes-base/tsconfig.json
2023-07-12 11:15:38 +02:00

28 lines
629 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"lib": ["dom", "es2020", "es2022.error"],
"types": ["node", "jest"],
"noEmit": true,
"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
}
}
}
}