mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-27 05:29:42 -08:00
28 lines
684 B
JSON
28 lines
684 B
JSON
|
{
|
||
|
"extends": "../../../tsconfig.json",
|
||
|
"compilerOptions": {
|
||
|
"rootDir": ".",
|
||
|
"outDir": "dist",
|
||
|
"target": "esnext",
|
||
|
"module": "esnext",
|
||
|
"allowJs": true,
|
||
|
"importHelpers": true,
|
||
|
"incremental": false,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"baseUrl": ".",
|
||
|
"types": ["vitest/globals", "unplugin-icons/types/vue"],
|
||
|
"paths": {
|
||
|
"@/*": ["src/*"],
|
||
|
"n8n-design-system/*": ["../design-system/src/*"]
|
||
|
},
|
||
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
|
||
|
// TODO: remove all options below this line
|
||
|
"noUnusedLocals": false,
|
||
|
"useUnknownInCatchVariables": false
|
||
|
},
|
||
|
"include": ["src/**/*.ts", "src/**/*.vue", "**/*.d.ts"]
|
||
|
}
|
||
|
|
||
|
|