mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
31 lines
455 B
JSON
31 lines
455 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"es2017"
|
|
],
|
|
"types": [
|
|
"node",
|
|
"jest"
|
|
],
|
|
"module": "commonjs",
|
|
"noImplicitAny": true,
|
|
"removeComments": true,
|
|
"strictNullChecks": true,
|
|
"strict": true,
|
|
"preserveConstEnums": true,
|
|
"declaration": true,
|
|
"outDir": "./dist/",
|
|
"target": "es2017",
|
|
"sourceMap": true
|
|
},
|
|
"include": [
|
|
"credentials/**/*",
|
|
"src/**/*",
|
|
"nodes/**/*",
|
|
"test/**/*",
|
|
],
|
|
"exclude": [
|
|
"**/*.spec.ts"
|
|
]
|
|
}
|