n8n/packages/design-system/tsconfig.json
2024-03-15 12:43:08 +01:00

26 lines
633 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "dist",
"target": "esnext",
"module": "esnext",
"importHelpers": true,
"allowJs": true,
"incremental": false,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"types": ["vitest/globals"],
"typeRoots": ["@testing-library", "@types", "../../node_modules"],
"paths": {
"@/*": ["src/*"]
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
// TODO: remove all options below this line
"strict": false,
"noImplicitAny": false,
"noImplicitReturns": false
},
"include": ["src/**/*.ts", "src/**/*.vue"]
}