FIX: Fixes types for TypeScript manually (#32)

This commit is contained in:
Nicolás Hatcher Andrés
2024-04-12 21:08:03 +02:00
committed by GitHub
parent 196e074ef5
commit b3b7dea930
5 changed files with 332 additions and 3 deletions

View File

@@ -1,6 +1,8 @@
all:
wasm-pack build --target web --scope ironcalc
cp README.pkg.md pkg/README.md
tsc types.ts --target esnext --module esnext
python fix_types.py
lint:
cargo check
@@ -10,5 +12,6 @@ lint:
clean:
cargo clean
rm -rf pkg
rm -f types.js
.PHONY: all web lint
.PHONY: all lint clean