mirror of
https://github.com/katanemo/plano.git
synced 2026-06-17 15:25:17 +02:00
fix(www): transpiler failure
This commit is contained in:
parent
0d9147456f
commit
9c9207c08e
4 changed files with 21 additions and 2 deletions
|
|
@ -1,7 +1,12 @@
|
|||
import type { NextConfig } from "next";
|
||||
|
||||
const nextConfig: NextConfig = {
|
||||
/* config options here */
|
||||
transpilePackages: [
|
||||
"@katanemo/ui",
|
||||
"@katanemo/shared-styles",
|
||||
"@katanemo/tailwind-config",
|
||||
"@katanemo/tsconfig",
|
||||
],
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,12 @@
|
|||
import type { NextConfig } from "next";
|
||||
|
||||
const nextConfig: NextConfig = {
|
||||
/* config options here */
|
||||
transpilePackages: [
|
||||
"@katanemo/ui",
|
||||
"@katanemo/shared-styles",
|
||||
"@katanemo/tailwind-config",
|
||||
"@katanemo/tsconfig",
|
||||
],
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
|
|
|
|||
|
|
@ -3,6 +3,9 @@
|
|||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"main": "./globals.css",
|
||||
"exports": {
|
||||
"./globals.css": "./globals.css"
|
||||
},
|
||||
"files": [
|
||||
"globals.css"
|
||||
]
|
||||
|
|
|
|||
|
|
@ -4,6 +4,12 @@
|
|||
"private": true,
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./src/index.ts",
|
||||
"default": "./src/index.ts"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"lint": "biome check",
|
||||
"typecheck": "tsc --noEmit"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue