Skip to content
Snippets Groups Projects
tsconfig.base.json 462 B
Newer Older
  • Learn to ignore specific revisions
  •     "target": "esnext",
        "allowSyntheticDefaultImports": true,
        "module": "commonjs",
        "isolatedModules": true,
        "strict": true,
        "moduleResolution": "node",
        "skipLibCheck": true,
        "allowJs": true,
        "esModuleInterop": true,
        "experimentalDecorators": true,
        "forceConsistentCasingInFileNames": true,
        "resolveJsonModule": true,
        "lib": ["dom", "dom.iterable", "esnext"]
      }
    }