| 12345678910111213141516171819202122 |
- {
- "$schema": "https://json.schemastore.org/tsconfig",
- "compilerOptions": {
- "strict": true,
- "target": "ES2022",
- "module": "commonjs",
- "lib": ["ES2022"],
- "declaration": true,
- "declarationMap": true,
- "sourceMap": true,
- "moduleResolution": "node",
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "skipLibCheck": true,
- "forceConsistentCasingInFileNames": true,
- "resolveJsonModule": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true
- }
- }
|