mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 15:47:20 +00:00
34 lines
903 B
JSON
34 lines
903 B
JSON
{
|
|
"extends": "@n8n/typescript-config/tsconfig.frontend.json",
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"baseUrl": ".",
|
|
"rootDirs": [".", "../composables/src"],
|
|
"noEmit": true,
|
|
"moduleResolution": "bundler",
|
|
|
|
"types": [
|
|
"vite/client",
|
|
"vitest/globals",
|
|
"unplugin-icons/types/vue",
|
|
"../design-system/src/shims-modules.d.ts"
|
|
],
|
|
"paths": {
|
|
"@n8n/chat*": ["../chat/src*"],
|
|
"@n8n/design-system*": ["../design-system/src*"],
|
|
"@n8n/composables*": ["../composables/src*"],
|
|
"@n8n/i18n*": ["../i18n/src*"],
|
|
"@n8n/stores*": ["../stores/src*"],
|
|
"@n8n/utils*": ["../../../@n8n/utils/src*"],
|
|
"@/*": ["../../editor-ui/src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"../chat/src/**/*.stories.ts",
|
|
"../design-system/src/**/*.stories.ts",
|
|
"../../editor-ui/src/**/*.stories.ts"
|
|
]
|
|
}
|