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