this repo has no description
1{
2 "compilerOptions": {
3 "target": "ES2022",
4 "module": "ESNext",
5 "moduleResolution": "node",
6 "lib": ["ES2022"],
7 "strict": true,
8 "isolatedModules": true,
9 "verbatimModuleSyntax": true,
10 "erasableSyntaxOnly": true,
11 "esModuleInterop": true,
12 "skipLibCheck": true,
13 "allowImportingTsExtensions": true,
14 "forceConsistentCasingInFileNames": true,
15 "resolveJsonModule": true,
16 "noEmit": true
17 },
18 "include": ["src/**/*"],
19 "exclude": ["node_modules"]
20}