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.
18 lines
413 B
18 lines
413 B
{
|
|
"extends": "@coze-arch/ts-config/tsconfig.node.json",
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"rootDir": "./",
|
|
"outDir": "./dist",
|
|
"module": "CommonJS",
|
|
"target": "ES2020",
|
|
"moduleResolution": "node"
|
|
},
|
|
"include": ["__tests__", "vitest.config.ts"],
|
|
"exclude": ["./dist"],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.build.json"
|
|
}
|
|
]
|
|
}
|
|
|