/
githubmirror
/
tailwindcss
Обзор
Документация
Войти
/
githubmirror
/
tailwindcss
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/@tailwindcss-postcss/tsup.config.ts
18 строк
299 B
Philipp Spiess
Resolve `@import` in core (#14446)
23 сен 2024, 18:05
Не верифицирован
23 сен 2024, 18:05
7979474
Код
Авторство
О чём код?
import { defineConfig } from 'tsup' export default defineConfig([ { format: ['esm'], minify: true, cjsInterop: true, dts: true, entry: ['src/index.ts'], }, { format: ['cjs'], minify: true, cjsInterop: true, dts: true, entry: ['src/index.cts'], }, ])