1234567891011121314151617181920 |
- {
- "compilerOptions": {
- "noEmit": true,
- "target": "esnext",
- "module": "commonjs",
- "lib": [
- "dom",
- "esnext"
- ],
- "noImplicitAny": true,
- "noImplicitThis": true,
- "strictNullChecks": true,
- "types": [],
- "noEmit": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "strictFunctionTypes": true,
- "forceConsistentCasingInFileNames": true
- }
- }
|