From 3c168aa9b64da9f3c48ad6e74e1d1a9a6dd8750e Mon Sep 17 00:00:00 2001 From: Max Richter Date: Mon, 2 Feb 2026 17:30:54 +0100 Subject: [PATCH] chore: add check script to ui package --- package.json | 1 + packages/ui/tsconfig.json | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index e55e719..d592f26 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "lint": "pnpm run -r --parallel lint", "format": "pnpm run -r format", "format:check": "pnpm run -r format:check", + "check": "pnpm run -r check", "build:story": "pnpm -r --filter 'ui' story:build", "build:app": "BASE_PATH=/ui pnpm -r --filter 'ui' build && pnpm -r --filter 'app' build", "build:nodes": "cargo build --workspace --target wasm32-unknown-unknown --release && rm -rf ./app/static/nodes/max/plantarium/ && mkdir -p ./app/static/nodes/max/plantarium/ && cp -R ./target/wasm32-unknown-unknown/release/*.wasm ./app/static/nodes/max/plantarium/", diff --git a/packages/ui/tsconfig.json b/packages/ui/tsconfig.json index 8ed3dd7..53f2350 100644 --- a/packages/ui/tsconfig.json +++ b/packages/ui/tsconfig.json @@ -1,15 +1,14 @@ { "extends": "./.svelte-kit/tsconfig.json", "compilerOptions": { + "rewriteRelativeImportExtensions": true, "allowJs": true, "checkJs": true, - "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "resolveJsonModule": true, "skipLibCheck": true, "sourceMap": true, "strict": true, - "module": "NodeNext", - "moduleResolution": "NodeNext" + "moduleResolution": "bundler" } }