mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
044607e2a0
Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
25 lines
691 B
JSON
25 lines
691 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"outDir": "dist",
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"importHelpers": true,
|
|
"allowJs": true,
|
|
"incremental": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": ".",
|
|
"types": ["vitest/globals"],
|
|
"typeRoots": ["./node_modules/@testing-library", "./node_modules/@types", "../../node_modules", "../../node_modules/@types"],
|
|
"paths": {
|
|
"n8n-design-system/*": ["./src/*"]
|
|
},
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
|
|
// TODO: remove all options below this line
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": false
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.vue"]
|
|
}
|