mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-02-27 02:03:44 -05:00
8 lines
150 B
JavaScript
8 lines
150 B
JavaScript
import { defineConfig } from 'tsdown';
|
|
|
|
export default defineConfig({
|
|
entry: ['src/**/*.ts', '!src/**/*.test.ts'],
|
|
exports: true,
|
|
dts: true
|
|
});
|