-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
32 lines (30 loc) · 870 Bytes
/
tsconfig.base.json
File metadata and controls
32 lines (30 loc) · 870 Bytes
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
// tsconfig.base.json
{
"compilerOptions": {
"target": "ES2020",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2020"],
"types": ["node"],
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true,
// Optional but nice for package exports
"moduleDetection": "force",
"allowImportingTsExtensions": false,
"noEmit": false,
// "preserveModules": true,
"outDir": "dist",
// Optional cleanup: no need for verbose `paths` if you're publishing
// Otherwise use for local tooling like you're doing
"baseUrl": ".",
"paths": {
"@chimp-stack/core": ["packages/core/src/index.ts"],
"@chimp-stack/core/*": ["packages/core/src/*"]
}
}
}