mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
39 lines
724 B
JSON
39 lines
724 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"importHelpers": true,
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": true,
|
|
"incremental": true,
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"outDir": "dist",
|
|
"types": [
|
|
"webpack-env",
|
|
"jest",
|
|
"vitest/globals"
|
|
],
|
|
"typeRoots": [
|
|
"@testing-library",
|
|
"@types"
|
|
],
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|