1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-10-06 17:47:46 +03:00
n8n/packages/node-dev/tsconfig.json

33 lines
498 B
JSON
Raw Normal View History

2019-06-23 13:35:23 +03:00
{
"compilerOptions": {
"lib": [
"es2017"
],
"types": [
"node"
2019-06-23 13:35:23 +03:00
],
"module": "commonjs",
"esModuleInterop": true,
"noImplicitAny": true,
"removeComments": true,
"strictNullChecks": true,
"strict": true,
"preserveConstEnums": true,
"declaration": true,
"outDir": "./dist/",
"target": "es2017",
"sourceMap": true
},
"include": [
"**/*.d.ts",
"commands/**/*",
"index.ts",
"src/**/*"
2019-06-23 13:35:23 +03:00
],
"exclude": [
"dist",
"node_modules/**/*",
2019-06-23 13:35:23 +03:00
"**/*.spec.ts"
]
}