You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
713 B
29 lines
713 B
3 months ago
|
{
|
||
|
"extends": "@coze-arch/ts-config/tsconfig.node.json",
|
||
|
"$schema": "https://json.schemastore.org/tsconfig",
|
||
|
"compilerOptions": {
|
||
|
"outDir": "dist",
|
||
|
"rootDir": "src",
|
||
|
"module": "CommonJS",
|
||
|
"target": "ES2020",
|
||
|
"moduleResolution": "node",
|
||
|
"tsBuildInfoFile": "dist/tsconfig.build.tsbuildinfo"
|
||
|
},
|
||
|
"include": ["src"],
|
||
|
"exclude": ["node_modules", "dist"],
|
||
|
"references": [
|
||
|
{
|
||
|
"path": "../../../config/eslint-config/tsconfig.build.json"
|
||
|
},
|
||
|
{
|
||
|
"path": "../../../config/ts-config/tsconfig.build.json"
|
||
|
},
|
||
|
{
|
||
|
"path": "../../../config/vitest-config/tsconfig.build.json"
|
||
|
},
|
||
|
{
|
||
|
"path": "../../utils/rush-logger/tsconfig.build.json"
|
||
|
}
|
||
|
]
|
||
|
}
|