12345678910111213141516171819202122232425 |
- {
- "compilerOptions": {
- "composite": true,
- "incremental": true,
- "target": "ESnext",
- "module": "ESNext",
- "moduleResolution": "Bundler",
- "lib": ["dom", "ESnext"],
- "resolveJsonModule": true,
- "allowImportingTsExtensions": true,
- "allowJs": false,
- "declaration": true,
- "emitDeclarationOnly": true,
- "declarationMap": true,
- "jsx": "preserve",
- "noImplicitAny": true,
- "noImplicitThis": true,
- "strictNullChecks": true,
- "verbatimModuleSyntax": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "strictFunctionTypes": true,
- "forceConsistentCasingInFileNames": true
- }
- }
|