12345678910111213141516171819202122232425262728293031 |
- {
- "compilerOptions": {
- "allowJs": true,
- "skipLibCheck": true,
- /* Strict Type-Checking Options */
- "strict": true,
- "strictNullChecks": true,
- "strictFunctionTypes": true,
- "strictBindCallApply": true,
- "strictPropertyInitialization": true,
- "noImplicitThis": true,
- "alwaysStrict": true,
- /* Additional Checks */
- // "noUnusedLocals": true,
- // "noUnusedParameters": true,
- "noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true,
- "forceConsistentCasingInFileNames": true,
- "isolatedModules": true,
- /* Module Resolution Options */
- "moduleResolution": "node",
- "allowSyntheticDefaultImports": true,
- "esModuleInterop": true,
- /* Advanced Options */
- "resolveJsonModule": true
- }
- }
|