mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 03:49:11 +00:00
17 lines
443 B
JSON
17 lines
443 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"lib": ["esnext", "webworker", "ES2020.BigInt", "ES2020.Promise"],
|
|
"types": ["@cloudflare/workers-types"],
|
|
"target": "ES2019",
|
|
"esModuleInterop": true,
|
|
"module": "commonjs"
|
|
},
|
|
"include": [
|
|
"./*.ts",
|
|
"./**/*.ts",
|
|
"../../node_modules/@cloudflare/workers-types/index.d.ts"
|
|
],
|
|
"exclude": ["./**/*.spec.ts", "./dist/**"],
|
|
"extends": "../../tsconfig.json"
|
|
}
|