mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
9267e8fb12
fix(typescript): Use consistent typescript configs make all packages inherit tsconfig from the root tsconfig skips building tests. reformat all tsconfigs with prettier.
25 lines
616 B
JSON
25 lines
616 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"outDir": "dist",
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"importHelpers": true,
|
|
"skipLibCheck": true,
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": ".",
|
|
"types": ["webpack-env", "jest", "vitest/globals"],
|
|
"typeRoots": ["@testing-library", "@types"],
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
|
|
// TODO: remove all options below this line
|
|
"noUnusedLocals": false,
|
|
"noImplicitReturns": false
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.vue"]
|
|
}
|