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": {
|
2022-09-09 09:00:18 -07:00
|
|
|
"rootDir": ".",
|
|
|
|
"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": ".",
|
2022-09-28 01:26:20 -07:00
|
|
|
"types": ["vitest/globals"],
|
2019-06-23 03:35:23 -07:00
|
|
|
"paths": {
|
2022-12-22 00:55:39 -08:00
|
|
|
"@/*": ["src/*"],
|
|
|
|
"n8n-design-system/*": ["../design-system/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
|
|
|
},
|
2022-09-09 09:00:18 -07:00
|
|
|
"include": ["src/**/*.ts", "src/**/*.vue"]
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|