-
-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (24 loc) · 692 Bytes
/
tsconfig.json
File metadata and controls
24 lines (24 loc) · 692 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"lib": ["ES2023"],
"moduleResolution": "bundler",
"resolveJsonModule": true,
"allowJs": true,
"checkJs": false,
"outDir": "./dist",
"rootDir": ".",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"types": ["node"]
},
"include": ["index.ts", "lib/**/*"],
"exclude": ["node_modules", "dist", "logs"]
}