mirror of
https://github.com/strapi/strapi.git
synced 2025-07-23 09:00:19 +00:00
16 lines
351 B
TypeScript
16 lines
351 B
TypeScript
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
import { defineConfig } from '@strapi/pack-up';
|
|
|
|
export default defineConfig({
|
|
bundles: [
|
|
{
|
|
source: './src/index.ts',
|
|
import: './dist/index.mjs',
|
|
require: './dist/index.js',
|
|
types: './dist/index.d.ts',
|
|
runtime: 'node',
|
|
},
|
|
],
|
|
dist: './dist',
|
|
});
|