Skip to content
Snippets Groups Projects
tsconfig.json 648 B
Newer Older
  • Learn to ignore specific revisions
  • Yoan VALLET's avatar
    Yoan VALLET committed
    {
      "compilerOptions": {
        "target": "esnext",
        "baseUrl": "src",
        "allowJs": true,
        "skipLibCheck": true,
        "esModuleInterop": true,
        "allowSyntheticDefaultImports": true,
        "strict": true,
        "forceConsistentCasingInFileNames": true,
        "module": "esnext",
        "moduleResolution": "node",
        "resolveJsonModule": true,
        "isolatedModules": true,
        "noEmit": true,
        "jsx": "react",
        "lib": [
          "esnext",
          "dom"
        ],
        "paths": {
          "*": [
            "*",
            "../node_modules/*",
            "types/*"
          ]
        }
      },
      "include": [
        "src/**/*", "tests/**/*"
      ]
    }