mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 11:59:11 +00:00
14 lines
387 B
JSON
14 lines
387 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"lib": ["esnext", "webworker", "ES2020.BigInt", "ES2020.Promise"],
|
|
"types": ["@cloudflare/workers-types"],
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node"
|
|
},
|
|
"include": ["src/**/*", "test/**/*"],
|
|
"exclude": ["./**/*.spec.ts"],
|
|
"extends": "../../tsconfig.json"
|
|
}
|