forked from clduab11/gemini-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.cli.json
More file actions
37 lines (37 loc) · 816 Bytes
/
tsconfig.cli.json
File metadata and controls
37 lines (37 loc) · 816 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
34
35
36
37
{
"extends": "./tsconfig.json",
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "nodenext",
"allowJs": true,
"outDir": "./dist",
"rootDir": "./src",
"strict": false,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": false,
"declaration": false,
"declarationMap": false,
"sourceMap": false,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"noEmitOnError": false,
"types": ["node"],
"lib": ["ES2022", "DOM"]
},
"include": [
"src/cli/**/*",
"src/types/**/*",
"src/utils/**/*",
"src/core/config*.ts",
"src/core/logger*.ts"
],
"exclude": [
"node_modules",
"dist",
"coverage",
"**/*.test.ts",
"**/*.spec.ts"
]
}