mirror of
https://github.com/ImSingee/hammal.git
synced 2024-11-22 06:59:21 +08:00
24 lines
545 B
JSON
24 lines
545 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"outDir": "./dist",
|
||
|
"module": "commonjs",
|
||
|
"target": "esnext",
|
||
|
"lib": ["esnext", "webworker"],
|
||
|
"alwaysStrict": true,
|
||
|
"strict": true,
|
||
|
"preserveConstEnums": true,
|
||
|
"moduleResolution": "node",
|
||
|
"sourceMap": true,
|
||
|
"esModuleInterop": true,
|
||
|
"types": ["@cloudflare/workers-types"]
|
||
|
},
|
||
|
"include": [
|
||
|
"./src/*.ts",
|
||
|
"./test/*.ts",
|
||
|
"./src/**/*.ts",
|
||
|
"./test/**/*.ts",
|
||
|
"./node_modules/@cloudflare/workers-types/index.d.ts"
|
||
|
],
|
||
|
"exclude": ["node_modules/", "dist/"]
|
||
|
}
|