forked from n8n-io/n8n
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (31 loc) · 754 Bytes
/
tsconfig.json
File metadata and controls
31 lines (31 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"extends": [
"@n8n/typescript-config/tsconfig.common.json",
"@n8n/typescript-config/tsconfig.backend.json"
],
"compilerOptions": {
"paths": {
"@test/*": ["./test/*"],
"@utils/*": ["./utils/*"]
},
"tsBuildInfoFile": "dist/typecheck.tsbuildinfo",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
// TODO: remove all options below this line
"noImplicitReturns": false,
"useUnknownInCatchVariables": false
},
"include": [
"credentials/**/*.ts",
"nodes/**/*.ts",
"nodes/**/*.json",
"test/**/*.ts",
"types/**/*.ts",
"utils/**/*.ts"
],
"references": [
{ "path": "../@n8n/imap/tsconfig.build.json" },
{ "path": "../workflow/tsconfig.build.json" },
{ "path": "../core/tsconfig.build.json" }
]
}