tsconfig.json 203 Bytes
Newer Older
Johnny's avatar
Johnny committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
{
  "files": [
    "./src/index.ts"
  ],
  "compilerOptions": {
    "lib": [
      "es2021"
    ],
    "target": "es2021",
    "module": "commonjs",
    "outDir": "./dist",
    "skipLibCheck": true
  }
}