tsconfig.json 647 Bytes
Newer Older
Almouhannad Hafez's avatar
Almouhannad Hafez committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
{
  "compilerOptions": {
    "target": "ES2020",
    "useDefineForClassFields": true,
    "module": "ESNext",
    "lib": [
      "ES2020",
      "DOM",
      "DOM.Iterable"
    ],
    "skipLibCheck": true,
    /* Bundler mode */
    "moduleResolution": "bundler",
    "allowImportingTsExtensions": true,
    "isolatedModules": true,
    "moduleDetection": "force",
    "noEmit": true,
    /* Linting */
    "strict": true,
20
    "strictPropertyInitialization": false,
Almouhannad Hafez's avatar
Almouhannad Hafez committed
21 22 23 24 25 26 27 28 29
    "noUnusedLocals": true,
    "noUnusedParameters": true,
    "noFallthroughCasesInSwitch": true,
    "noUncheckedSideEffectImports": true
  },
  "include": [
    "src/**/*"
  ]
}