n8n/packages/editor-ui/tsconfig.json
कारतोफ्फेलस्क्रिप्ट™ 803895360c
refactor(editor): Delete unused code (no-changelog) (#9866)
2024-06-26 11:45:41 +02:00

31 lines
861 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
"useUnknownInCatchVariables": false
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.vue"]
}