新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
19 lines
809 B
JavaScript
19 lines
809 B
JavaScript
// ESM Exports
|
|
// ===========
|
|
// This module is the package entry point for ES module users. In other words,
|
|
// it is the module they are interfacing with when they import from the whole
|
|
// package instead of from a submodule, like this:
|
|
//
|
|
// ```js
|
|
// import { map } from 'underscore';
|
|
// ```
|
|
//
|
|
// The difference with `./index-default`, which is the package entry point for
|
|
// CommonJS, AMD and UMD users, is purely technical. In ES modules, named and
|
|
// default exports are considered to be siblings, so when you have a default
|
|
// export, its properties are not automatically available as named exports. For
|
|
// this reason, we re-export the named exports in addition to providing the same
|
|
// default export as in `./index-default`.
|
|
export { default } from './index-default.js';
|
|
export * from './index.js';
|