-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 822 Bytes
/
tsconfig.json
File metadata and controls
33 lines (33 loc) · 822 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
33
{
"compilerOptions": {
// Type Checking
"strict": true,
// Modules
"baseUrl": ".",
"module": "ES2020",
"moduleResolution": "Node",
"paths": {
"@balm-core/*": ["./packages/balm-core/*"]
},
// Project Options
"importHelpers": true,
"lib": ["ESNext", "DOM"],
// Emit
"outDir": "packages/balm-core/tslib",
"removeComments": true,
// Language and Environment
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "ES2020",
// Interop Constraints
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
// Completeness
"skipLibCheck": true
},
"include": [
"packages/balm-core/src/**/*",
"packages/balm-core/types/index.d.ts"
],
"exclude": ["node_modules", "coverage", "lib", "tslib"]
}