-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
26 lines (26 loc) · 1.07 KB
/
tsconfig.base.json
File metadata and controls
26 lines (26 loc) · 1.07 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
{
"compilerOptions": {
"target": "ES2019",
"module": "nodenext",
"declaration": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "nodenext",
"baseUrl": ".",
"paths": {
"@objectstack/spec": ["./node_modules/@objectstack/spec/dist/index.d.ts"],
"@objectstack/spec/data": ["./node_modules/@objectstack/spec/dist/data/index.d.ts"],
"@objectstack/spec/system": ["./node_modules/@objectstack/spec/dist/system/index.d.ts"],
"@objectstack/spec/api": ["./node_modules/@objectstack/spec/dist/api/index.d.ts"],
"@objectstack/spec/ui": ["./node_modules/@objectstack/spec/dist/ui/index.d.ts"],
"@objectstack/spec/ai": ["./node_modules/@objectstack/spec/dist/ai/index.d.ts"],
"@objectstack/spec/contracts": ["./node_modules/@objectstack/spec/dist/contracts/index.d.ts"],
"@objectql/types": ["packages/foundation/types/dist/index.d.ts"]
},
"composite": true,
"sourceMap": true
},
"exclude": ["node_modules", "dist"]
}