mirror of
https://github.com/lush2020/edgetunnel.git
synced 2026-03-22 01:22:21 +08:00
23 lines
494 B
JSON
23 lines
494 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"module": "esnext",
|
|
"target": "es2020",
|
|
"lib": ["es2020"],
|
|
"strict": true,
|
|
"alwaysStrict": true,
|
|
"preserveConstEnums": true,
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"types": ["@cloudflare/workers-types", "@types/jest"]
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist", "test"],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.app.json"
|
|
}
|
|
]
|
|
}
|