Skip to content

Instantly share code, notes, and snippets.

@shawncao
Created January 5, 2023 22:02
Show Gist options
  • Select an option

  • Save shawncao/6f605ef79ae920f9fd9f25146d5d7d4e to your computer and use it in GitHub Desktop.

Select an option

Save shawncao/6f605ef79ae920f9fd9f25146d5d7d4e to your computer and use it in GitHub Desktop.

Revisions

  1. shawncao created this gist Jan 5, 2023.
    30 changes: 30 additions & 0 deletions tsconfig.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,30 @@
    {
    "extends": "./paths.json",
    "compilerOptions": {
    "target": "ES6",
    "lib": [
    "dom",
    "dom.iterable",
    "esnext"
    ],
    "downlevelIteration": true,
    "allowJs": true,
    "skipLibCheck": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "noFallthroughCasesInSwitch": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "noImplicitAny": false,
    "strictNullChecks": false,
    "noEmit": true,
    "jsx": "react-jsx"
    },
    "include": [
    "src"
    ]
    }