n8n/packages/editor-ui/tsconfig.json

24 lines
555 B
JSON
Raw Normal View History

2019-06-23 03:35:23 -07:00
{
"extends": "../../tsconfig.json",
2019-06-23 03:35:23 -07:00
"compilerOptions": {
"rootDir": ".",
"outDir": "dist",
2019-06-23 03:35:23 -07:00
"target": "esnext",
"module": "esnext",
"skipLibCheck": true,
"allowJs": true,
2019-06-23 03:35:23 -07:00
"importHelpers": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"types": ["vitest/globals"],
2019-06-23 03:35:23 -07:00
"paths": {
"@/*": ["src/*"]
2019-06-23 03:35:23 -07:00
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
// TODO: remove all options below this line
"noUnusedLocals": false,
"useUnknownInCatchVariables": false
2019-06-23 03:35:23 -07:00
},
"include": ["src/**/*.ts", "src/**/*.vue"]
2019-06-23 03:35:23 -07:00
}