Skip to content
Snippets Groups Projects
tsconfig.json 575 B
Newer Older
  • Learn to ignore specific revisions
  • Marin Karamihalev's avatar
    Marin Karamihalev committed
    {
      "exclude": ["node_modules", "build", "tests"],
      "compilerOptions": {
        "target": "ESNext",
        "module": "CommonJS",
        "lib": ["ESNext"],
        "allowJs": true,
        "outDir": "build",
        // "rootDir": "src",
    
        "strict": true,
        "noImplicitAny": true,
        "esModuleInterop": true,
    
        "resolveJsonModule": true,
        "moduleResolution": "Node",
        "skipLibCheck": true,
        "forceConsistentCasingInFileNames": true,
        "sourceMap": true,
        "declaration": true
      },
    
      "compileOnSave": true,
      "typedocOptions": {
        "mode": "modules",
        "out": "docs"
      }
    
    Marin Karamihalev's avatar
    Marin Karamihalev committed
    }