Files
vtj/packages/cli/config/tsconfig.node.json
陈华春 9caaad88ea tsconfig
2023-11-16 22:56:06 +08:00

17 lines
574 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"lib": [],
"types": [
"node"
]
// We don't override `module` to `CommonJS` here.
// Whatever build tool you use, we recommend you to author and ship in ES modules.
// The recommendation may change when `"module": "Node12" / "NodeNext"` is stable.
// If you are targeting CommonJS environment,
// and use `tsc` or `ts-node` for transpilation,
// you might need to manually override the following fields:
// "module": "CommonJS",
// "preserveValueImports": false,
}
}