Skip to content
Snippets Groups Projects
tsconfig.json 587 B
{
  "compilerOptions": {
    /* Visit https://aka.ms/tsconfig.json to read more about this file */

    // Node 16 recommendations -- https://github.com/tsconfig/bases/blob/main/bases/node16.json
    "lib": ["ES2021"],
    "module": "commonjs",
    "target": "ES2021",
    "strict": true,
    "esModuleInterop": true,
    "skipLibCheck": true,
    "forceConsistentCasingInFileNames": true,

    // Customization
    //"moduleResolution": "node",
    //"rootDir": "./src",
    "baseUrl": "./src",
    "outDir": "./dist"
  },
  "include": ["src/**/*"],
  "exclude": ["src/**/*.spec.ts"]
}