console/packages/services/cdn-worker/tsconfig.json

18 lines
508 B
JSON

{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"module": "commonjs",
"target": "esnext",
"lib": ["esnext"],
"alwaysStrict": true,
"strict": true,
"preserveConstEnums": true,
"moduleResolution": "node",
"sourceMap": true,
"esModuleInterop": true,
"types": ["@cloudflare/workers-types", "@types/service-worker-mock"]
},
"include": ["src"],
"exclude": ["node_modules", "dist", "test", "src/dev.ts", "src/dev-polyfill.ts"]
}