mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
19 lines
420 B
JSON
19 lines
420 B
JSON
{
|
|
"extends": ["./tsconfig.json", "@n8n/typescript-config/tsconfig.build.json"],
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"composite": true,
|
|
"tsBuildInfoFile": "dist/build.tsbuildinfo"
|
|
},
|
|
"include": [
|
|
"credentials/**/*.ts",
|
|
"credentials/translations/**/*.json",
|
|
"nodes/**/*.ts",
|
|
"nodes/**/*.json",
|
|
"test/**/*.ts",
|
|
"types/**/*.ts",
|
|
"utils/**/*.ts"
|
|
],
|
|
"exclude": ["nodes/**/*.test.ts", "test/**"]
|
|
}
|