@cellajs/create-cella 0.1.7 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/tsup.config.ts DELETED
@@ -1,22 +0,0 @@
1
- import { defineConfig } from 'tsup';
2
-
3
- export default defineConfig({
4
- entry: ['src/index.ts'],
5
- outDir: 'dist',
6
- clean: true,
7
- minify: false,
8
- format: ['esm'],
9
- target: 'esnext',
10
- splitting: false,
11
- sourcemap: true,
12
- dts: false,
13
- esbuildOptions(options) {
14
- options.alias = {
15
- '#': './src',
16
- };
17
- options.platform = 'node'; // Ensure the platform is set to Node.js
18
- options.mainFields = ['module', 'main']; // Prioritize ESM entry points
19
- options.conditions = ['module']; // Enforce use of ESM
20
- },
21
- external: [],
22
- });