Files
cnpmcore/tsconfig.prod.json
fengmk2 4427a4fca5 feat: use egg v4 (#747)
BREAKING CHANGE: only support egg >= 4.0.0

the first app on egg v4

https://github.com/eggjs/egg/issues/3644
2025-02-09 15:43:24 +08:00

20 lines
296 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"declaration": true,
},
"exclude": [
"test"
],
"include": [
"app/**/*.ts",
"app/**/*.json",
"config/**/*.ts",
"typings/**/*.ts",
"app.ts",
"module.d.ts",
"index.d.ts"
]
}