Files
twenty/tsconfig.base.json
T
2025-11-04 12:09:53 +01:00

27 lines
754 B
JSON

{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"baseUrl": ".",
"paths": {
"twenty-sdk": ["packages/twenty-sdk/src/index.ts"],
"twenty-sdk/*": ["packages/twenty-sdk/src/*"],
"@/application": ["packages/twenty-sdk/src/application/index.ts"],
"@/application/*": ["packages/twenty-sdk/src/application/*"]
},
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2018",
"module": "esnext",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"resolveJsonModule": true
},
"exclude": ["node_modules", "tmp"]
}