| 123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- // Visit https://aka.ms/tsconfig to read more about this file
- "compilerOptions": {
- // File Layout
- "rootDir": "./src",
- "outDir": "./dist",
- // Environment Settings
- // See also https://aka.ms/tsconfig/module
- "module": "nodenext",
- "moduleResolution": "nodenext",
- "esModuleInterop": true,
- "target": "ESNext",
- "types": [
- "node"
- ],
- // Other Outputs
- "sourceMap": true,
- "declaration": true,
- "declarationMap": true,
- // Stricter Typechecking Options
- "noUncheckedIndexedAccess": true,
- "exactOptionalPropertyTypes": true,
- // Style Options
- // "noImplicitReturns": true,
- // "noImplicitOverride": true,
- // "noUnusedLocals": true,
- // "noUnusedParameters": true,
- // "noFallthroughCasesInSwitch": true,
- // "noPropertyAccessFromIndexSignature": true,
- // Recommended Options
- "strict": true,
- "jsx": "react-jsx",
- "verbatimModuleSyntax": false,
- "isolatedModules": true,
- "noUncheckedSideEffectImports": true,
- "moduleDetection": "force",
- "skipLibCheck": true,
- }
- }
|