1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| {
| "compilerOptions": {
| "lib": ["ES2022", "es6"],
| "types": ["node"],
| "target": "ESNext",
| "module": "ESNext",
| "moduleResolution": "node",
| "noImplicitAny": true,
| "strict": true,
| "esModuleInterop": true,
| "skipLibCheck": true,
| "declaration": true
| },
| "exclude": ["node_modules"]
| }
|
|