- 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).
17 lines
261 B
JSON
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"
|
|
}
|
|
}
|