2019-06-23 03:35:23 -07:00
|
|
|
{
|
2022-09-09 09:00:18 -07:00
|
|
|
"extends": "../../tsconfig.json",
|
2019-06-23 03:35:23 -07:00
|
|
|
"compilerOptions": {
|
2024-05-17 02:52:15 -07:00
|
|
|
"rootDirs": [".", "../design-system/src", "../@n8n/chat/src"],
|
2022-09-09 09:00:18 -07:00
|
|
|
"outDir": "dist",
|
2019-06-23 03:35:23 -07:00
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
2022-09-09 09:00:18 -07:00
|
|
|
"allowJs": true,
|
2019-06-23 03:35:23 -07:00
|
|
|
"importHelpers": true,
|
2022-11-23 07:20:28 -08:00
|
|
|
"incremental": false,
|
2019-06-23 03:35:23 -07:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2023-01-10 05:06:12 -08:00
|
|
|
"resolveJsonModule": true,
|
2019-06-23 03:35:23 -07:00
|
|
|
"baseUrl": ".",
|
2024-05-17 04:16:00 -07:00
|
|
|
"types": [
|
|
|
|
"vitest/globals",
|
2024-06-03 06:04:21 -07:00
|
|
|
"unplugin-icons/types/vue",
|
2024-05-17 06:01:26 -07:00
|
|
|
"./src/shims.d.ts",
|
|
|
|
"./src/shims-vue.d.ts",
|
|
|
|
"./src/v3-infinite-loading.d.ts",
|
2024-06-03 06:04:21 -07:00
|
|
|
"../workflow/src/types.d.ts",
|
|
|
|
"../design-system/src/shims-markdown-it.d.ts"
|
2024-05-17 04:16:00 -07:00
|
|
|
],
|
2019-06-23 03:35:23 -07:00
|
|
|
"paths": {
|
2024-06-03 06:04:21 -07:00
|
|
|
"@/*": ["./src/*"],
|
|
|
|
"n8n-design-system": ["../design-system/src/main.ts"],
|
2024-01-09 03:11:39 -08:00
|
|
|
"n8n-design-system/*": ["../design-system/src/*"],
|
|
|
|
"@n8n/chat/*": ["../@n8n/chat/src/*"]
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
2022-09-09 09:00:18 -07:00
|
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
|
|
|
|
// TODO: remove all options below this line
|
|
|
|
"noUnusedLocals": false,
|
2023-11-23 02:55:02 -08:00
|
|
|
"useUnknownInCatchVariables": false,
|
|
|
|
"experimentalDecorators": true
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
2024-05-17 04:16:00 -07:00
|
|
|
"include": [ "src/**/*.ts", "src/**/*.d.ts", "src/**/*.vue"]
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|