File size: 373 Bytes
aec3094 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | {
"extends": [
"@n8n/typescript-config/tsconfig.common.json",
"@n8n/typescript-config/tsconfig.backend.json"
],
"compilerOptions": {
"outDir": "dist",
"preserveSymlinks": true,
"tsBuildInfoFile": "dist/build.tsbuildinfo",
// TODO: remove all options below this line
"useUnknownInCatchVariables": false
},
"include": ["commands/**/*.ts", "src/**/*.ts"]
}
|