mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 07:34:08 -08:00
a9fa830bd7
* feat: Added turborepo setup.
* feat: Updated nodes and credentials loading.
* feat: Removed remaining lerna references.
* fix: Updated npm run bootstrap command.
* feat: Added CI step for installing latest npm.
* chore: Removed lerna config.
* feat: Added gulp to global ci packages.
* fix: Set node as moduleResolution target in workflow. Fixed CI.
* fix: Added turborepo installation to the n8n-custom docker image.
* fix: Updated copied docker files for n8n-custom.
* fix: Added git as dependency in n8n-custom dockerfile.
* fix: Changed npm install command in n8n-custom.
* 📦 Update `package-lock.json`
Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
37 lines
622 B
JSON
37 lines
622 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"dom",
|
|
"es2019"
|
|
],
|
|
"types": [
|
|
"node",
|
|
"jest"
|
|
],
|
|
"module": "commonjs",
|
|
"removeComments": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitReturns": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"preserveConstEnums": true,
|
|
"declaration": true,
|
|
"outDir": "./dist/",
|
|
"target": "es2019",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"useUnknownInCatchVariables": false,
|
|
},
|
|
"include": [
|
|
"**/*.d.ts",
|
|
"src/**/*",
|
|
"test/**/*"
|
|
],
|
|
"exclude": [
|
|
"dist/**/*",
|
|
"node_modules/**/*",
|
|
"**/*.spec.ts"
|
|
]
|
|
}
|