Skip to content
Snippets Groups Projects
Select Git revision
  • 57d32d431f3e68dcb299aa4a57f54cfb2fb80c87
  • main default protected
  • tracespace
3 results

LICENSE.md

Blame
  • This project is licensed under the MIT License. Learn more
    tsconfig.json 534 B
    {
      "compilerOptions": {
        "target": "ES2020",
        "useDefineForClassFields": true,
        "module": "ESNext",
        "lib": ["ES2020", "DOM", "DOM.Iterable"],
        "skipLibCheck": true,
    
        /* Bundler mode */
        "moduleResolution": "bundler",
        "allowImportingTsExtensions": true,
        "resolveJsonModule": true,
        "isolatedModules": true,
        "noEmit": true,
    
        /* Linting */
        "strict": true,
        "noUnusedLocals": true,
        "noUnusedParameters": true,
        "noFallthroughCasesInSwitch": true
      },
      "include": ["src", "img"]
    }