-
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) · 813 Bytes
/
Copy pathtsconfig.cli.json
File metadata and controls
37 lines (37 loc) · 813 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
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "./dist",
"rootDir": "./",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": false,
"sourceMap": true,
"removeComments": false,
"resolveJsonModule": true,
"isolatedModules": true,
"allowImportingTsExtensions": true,
"noEmit": false,
"allowSyntheticDefaultImports": true,
"rewriteRelativeImportExtensions": true,
"types": ["node"]
},
"include": [
"bin/index.ts",
"src/**/*.ts"
],
"exclude": [
"node_modules",
"dist",
"app",
"components",
"lib",
"**/__tests__/**",
"**/*.test.ts"
]
}