mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-09 16:01:39 -04: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
|
|
});
|