mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
32 lines
484 B
JSON
32 lines
484 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"es2019"
|
|
],
|
|
"types": [
|
|
"node"
|
|
],
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"removeComments": true,
|
|
"strict": true,
|
|
"preserveConstEnums": true,
|
|
"declaration": true,
|
|
"outDir": "./dist/",
|
|
"target": "es2019",
|
|
"useUnknownInCatchVariables": false,
|
|
"sourceMap": true
|
|
},
|
|
"include": [
|
|
"**/*.d.ts",
|
|
"commands/**/*",
|
|
"index.ts",
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules/**/*",
|
|
"**/*.spec.ts"
|
|
]
|
|
}
|