Skip to content
Snippets Groups Projects
tsconfig.json 584 B
{
    "compilerOptions": {
      "target": "es6", // Specify ECMAScript target version
      "module": "commonjs", // Specify module code generation
      "strict": true, // Enable all strict type-checking options
      "esModuleInterop": true, // Enable interoperability between CommonJS and ES Modules
      "sourceMap": true // Generate source maps for debugging
    },
    "include": [
      "./**/*.ts" // Include all TypeScript files in the project
    ],
    "exclude": [
      "node_modules", // Exclude node_modules folder
      "**/*.test.ts" // Exclude test files
    ]
  }