-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (24 loc) · 609 Bytes
/
tsconfig.json
File metadata and controls
24 lines (24 loc) · 609 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
{
"exclude": ["node_modules", "./shared/ascii", "dist"],
"include": ["cli", "shared", "scripts"],
"compilerOptions": {
"lib": ["esnext"],
"types": ["jest", "node"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"noUnusedParameters": true,
"esModuleInterop": true,
"noImplicitAny": true,
"noEmit": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@cli/*": ["./cli/*"],
"@scripts/*": ["./scripts/*"],
"@shared/*": ["./shared/*"],
}
},
}