adding compute example

This commit is contained in:
Franklin 2026-02-03 21:17:44 -05:00 committed by Nathan Flurry
parent d67cc6edf4
commit 11950d2a39
7 changed files with 616 additions and 23 deletions

View file

@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM"],
"module": "ESNext",
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"noEmit": true,
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "**/*.test.ts"]
}