tpmjs/packages/config/package.json
Ajax Davis f5d7364c96 fix: resolve tailwind config import issues
- Inline tailwind config to resolve Turbopack import issues with @tpmjs/config
- Add exports field to @tpmjs/config package.json for proper module resolution
- Add @tpmjs/config to transpilePackages in Next.js config

Note: page.tsx has a pre-existing Turbopack parsing error at line 604
that needs to be addressed separately (it existed before these changes).
2026-01-20 12:12:16 +10:00

17 lines
261 B
JSON

{
"name": "@tpmjs/config",
"version": "0.0.0",
"private": true,
"files": [
"biome.json",
"eslint",
"tailwind",
"tsconfig"
],
"exports": {
"./tailwind/base": "./tailwind/base.ts"
},
"dependencies": {
"zod": "^4.3.5"
}
}