mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
34 lines
520 B
JSON
34 lines
520 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"dom",
|
|
"es2017",
|
|
"es2019.array"
|
|
],
|
|
"types": [
|
|
"node",
|
|
"jest"
|
|
],
|
|
"module": "commonjs",
|
|
"removeComments": true,
|
|
"strict": true,
|
|
"preserveConstEnums": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"outDir": "./dist/",
|
|
"target": "es2017",
|
|
"sourceMap": true
|
|
},
|
|
"include": [
|
|
"credentials/**/*",
|
|
"src/**/*",
|
|
"nodes/**/*",
|
|
"nodes/**/*.json",
|
|
"credentials/translations/**/*.json",
|
|
"test/**/*"
|
|
],
|
|
"exclude": [
|
|
"**/*.spec.ts"
|
|
]
|
|
}
|