-
-
Notifications
You must be signed in to change notification settings - Fork 200
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (24 loc) · 659 Bytes
/
tsconfig.json
File metadata and controls
24 lines (24 loc) · 659 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
{
"compilerOptions": {
"noEmit": true,
"module": "node16",
"target": "ESNext",
"moduleResolution": "node16",
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"erasableSyntaxOnly": true,
"skipLibCheck": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"lib": ["ES2022"],
"paths": {
"@clack/core": ["./packages/core/src/index.ts"],
"@clack/prompts": ["./packages/prompts/src/index.ts"]
},
"types": ["node"]
},
"include": ["packages/*/src/**/*.ts", "packages/*/test/**/*.ts"]
}