Josh 25d1ceaa44
feat(pack-up): enable config via nodeAPI & allow bundles to have own tsconfig (#18440)
* feat: add ability to pass config & have tsconfig per bundle

* feat: use node:module builtinModules for node stuff

* chore: remove builtins from externals
2023-10-16 08:55:43 +01:00

15 lines
349 B
TypeScript

// eslint-disable-next-line import/no-extraneous-dependencies
import { defineConfig } from '@strapi/pack-up';
export default defineConfig({
bundles: [
{
source: './src/create-strapi-app.ts',
import: './dist/create-strapi-app.mjs',
require: './dist/create-strapi-app.js',
},
],
dist: './dist',
runtime: 'node',
});