feat: add multilingual support so Naomi can use Python too

This commit is contained in:
2026-01-23 15:32:02 -08:00
parent 38e7f15d93
commit c0ad74367a
52 changed files with 1305 additions and 46 deletions
+27
View File
@@ -0,0 +1,27 @@
.PHONY: help install build lint test clean
help:
@echo "TypeScript project commands:"
@echo " make install - Install dependencies"
@echo " make build - Build TypeScript (type check)"
@echo " make lint - Run ESLint"
@echo " make test - Run tests"
@echo " make clean - Clean build artifacts"
install:
pnpm install --frozen-lockfile
build:
pnpm exec tsc --noEmit
lint:
pnpm exec eslint src --max-warnings 0
test:
@echo "No tests configured yet"
@exit 0
clean:
rm -rf node_modules
rm -rf dist
rm -f *.tsbuildinfo