n8n/packages/editor-ui/tsconfig.json
Ricardo Espinoza 22bdb0568e
refactor(editor): Fix remaining FE type check errors (no-changelog) (#9607)
Co-authored-by: Alex Grozav <alex@grozav.com>
2024-06-10 16:23:06 +03:00

33 lines
923 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"rootDirs": [".", "../design-system/src", "../@n8n/chat/src"],
"outDir": "dist",
"target": "esnext",
"module": "esnext",
"allowJs": true,
"importHelpers": true,
"incremental": false,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"baseUrl": ".",
"types": [
"vitest/globals",
"unplugin-icons/types/vue",
"../design-system/src/shims-modules.d.ts"
],
"paths": {
"@/*": ["./src/*"],
"n8n-design-system": ["../design-system/src/main.ts"],
"n8n-design-system/*": ["../design-system/src/*"],
"@n8n/chat/*": ["../@n8n/chat/src/*"]
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
// TODO: remove all options below this line
"noUnusedLocals": false,
"useUnknownInCatchVariables": false,
"experimentalDecorators": true
},
"include": [ "src/**/*.ts", "src/**/*.d.ts", "src/**/*.vue"]
}