mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
36 lines
579 B
JSON
36 lines
579 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"lib": [
|
||
|
"dom",
|
||
|
"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"
|
||
|
]
|
||
|
}
|