-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.cli.json
More file actions
27 lines (27 loc) · 895 Bytes
/
Copy pathtsconfig.cli.json
File metadata and controls
27 lines (27 loc) · 895 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
{
// The command line surface. `rootDir: "cli"` keeps it a sibling of `core/`, never a parent of
// it, which is what forces the import rule: `cli/` reaches core through `dist-core/` and its
// emitted specifiers resolve the same way inside `app.asar`.
"compilerOptions": {
"target": "ES2023",
"lib": ["ES2023"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"types": ["node"],
"rootDir": "cli",
"outDir": "dist-cli",
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"isolatedModules": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"skipLibCheck": true,
"exactOptionalPropertyTypes": true,
"verbatimModuleSyntax": true
},
"include": ["cli/**/*.ts"],
"exclude": ["cli/**/*.test.ts", "cli/**/*.test-support.ts"]
}