mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
18 lines
360 B
JSON
18 lines
360 B
JSON
|
{
|
||
|
"extends": ["./tsconfig.json"],
|
||
|
"compilerOptions": {
|
||
|
"types": ["node"],
|
||
|
"noEmit": false,
|
||
|
"declaration": true,
|
||
|
"outDir": "dist",
|
||
|
"tsBuildInfoFile": "dist/build.tsbuildinfo"
|
||
|
},
|
||
|
"include": [
|
||
|
"credentials/**/*.ts",
|
||
|
"nodes/**/*.ts",
|
||
|
"nodes/**/*.json",
|
||
|
"credentials/translations/**/*.json"
|
||
|
],
|
||
|
"exclude": ["nodes/**/*.test.ts", "test/**"]
|
||
|
}
|