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
50 lines (47 loc) · 1.38 KB
/
tsconfig.json
File metadata and controls
50 lines (47 loc) · 1.38 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"extends": ["@n8n/typescript-config/modern/tsconfig.json"],
"compilerOptions": {
"paths": {
"@credentials/*": ["./credentials/*"],
"@test/*": ["./test/*"],
"@utils/*": ["./utils/*"],
"@nodes-testing/*": ["../core/nodes-testing/*"]
},
"tsBuildInfoFile": "dist/typecheck.tsbuildinfo",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
// TODO: remove all options below this line to align with the modern config
// TODO: "module" to be removed when we migrate to vitest
"module": "commonjs",
// TODO: "moduleResolution" to be removed when we migrate to vitest
"moduleResolution": "node",
"noImplicitReturns": false,
"useUnknownInCatchVariables": false,
"isolatedModules": false,
"verbatimModuleSyntax": false,
"noUncheckedIndexedAccess": false,
"noImplicitOverride": false,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictNullChecks": true,
"preserveConstEnums": true
},
"include": [
"shims.d.ts",
"credentials/**/*.ts",
"nodes/**/*.ts",
"nodes/**/*.json",
"test/**/*.ts",
"types/**/*.ts",
"utils/**/*.ts",
"types/**/*.ts",
"../core/nodes-testing/**/*.ts",
"../../node_modules/jest-expect-message/types/index.d.ts"
],
"references": [
{ "path": "../@n8n/imap/tsconfig.build.json" },
{ "path": "../workflow/tsconfig.build.esm.json" },
{ "path": "../core/tsconfig.build.json" }
]
}