-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
32 lines (32 loc) · 1.02 KB
/
tsconfig.base.json
File metadata and controls
32 lines (32 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2022",
"module": "esnext",
"lib": ["ES2022", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@adenta/cli": ["packages/cli/src/index.ts"],
"@adenta/cli/*": ["packages/cli/src/*/index.ts"],
"@adenta/cms": ["packages/cms/src/index.ts"],
"@adenta/cms/*": ["packages/cms/src/*/index.ts"],
"@adenta/core": ["packages/core/src/index.ts"],
"@adenta/core/*": ["packages/core/src/*/index.ts"],
"@adenta/mcp-server": ["packages/mcp-server/src/index.ts"],
"@adenta/ui": ["packages/ui/src/index.ts"],
"@adenta/ui/*": ["packages/ui/src/*/index.ts"],
"@payload-config": ["./src/payload.config.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}