v3/packages/api/tsconfig.json

14 lines
395 B
JSON

{
"compilerOptions": {
"outDir": "./dist",
"target": "esnext",
"module": "esnext",
"lib": ["esnext", "webworker", "ES2020.BigInt", "ES2020.Promise"],
"types": ["@cloudflare/workers-types", "node"],
"esModuleInterop": true,
"moduleResolution": "node"
},
"include": ["src/**/*", "test/**/*"],
"exclude": ["./**/*.spec.ts"],
"extends": "../../tsconfig.json"
}