tsup.config.ts — tailwindcss Source File
Architecture documentation for tsup.config.ts, a typescript file in the tailwindcss codebase. 1 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR fdc004cf_e6e9_107a_4a1f_2ab61866a69a["tsup.config.ts"] 36ffa6ff_ae83_3199_d519_e3ec27f201c3["tsup"] fdc004cf_e6e9_107a_4a1f_2ab61866a69a --> 36ffa6ff_ae83_3199_d519_e3ec27f201c3 style fdc004cf_e6e9_107a_4a1f_2ab61866a69a fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { defineConfig } from 'tsup'
export default defineConfig([
{
format: ['cjs'],
minify: true,
dts: true,
entry: ['src/index.cts'],
define: {
'process.env.NODE_ENV': '"production"',
},
},
{
format: ['esm'],
minify: true,
dts: true,
entry: ['src/index.ts'],
define: {
'process.env.NODE_ENV': '"production"',
},
},
{
format: ['esm'],
minify: true,
dts: true,
entry: ['src/esm-cache.loader.mts'],
define: {
'process.env.NODE_ENV': '"production"',
},
},
{
format: ['cjs'],
minify: true,
dts: true,
entry: ['src/require-cache.cts'],
define: {
'process.env.NODE_ENV': '"production"',
},
},
])
Dependencies
- tsup
Source
Frequently Asked Questions
What does tsup.config.ts do?
tsup.config.ts is a source file in the tailwindcss codebase, written in typescript.
What does tsup.config.ts depend on?
tsup.config.ts imports 1 module(s): tsup.
Where is tsup.config.ts in the architecture?
tsup.config.ts is located at packages/@tailwindcss-node/tsup.config.ts (directory: packages/@tailwindcss-node).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free