mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
35 lines
568 B
JSON
35 lines
568 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"es2017"
|
|
],
|
|
"types": [
|
|
"node",
|
|
"jest"
|
|
],
|
|
"module": "commonjs",
|
|
"noImplicitAny": true,
|
|
"removeComments": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"preserveConstEnums": true,
|
|
"declaration": true,
|
|
"outDir": "./dist/",
|
|
"target": "es2017",
|
|
"sourceMap": true
|
|
},
|
|
"include": [
|
|
"**/*.d.ts",
|
|
"src/**/*",
|
|
"test/**/*"
|
|
],
|
|
"exclude": [
|
|
"dist/**/*",
|
|
"node_modules/**/*",
|
|
"**/*.spec.ts"
|
|
]
|
|
}
|