MMap native library

This commit is contained in:
eli
2026-01-26 08:05:00 +00:00
commit 033bbe2512
9 changed files with 1749 additions and 0 deletions

16
tsconfig.json Normal file
View File

@@ -0,0 +1,16 @@
// tsconfig.json
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "./dist",
"rootDir": ".",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"declaration": true
},
"include": ["lib/**/*", "test.ts"],
"exclude": ["node_modules", "dist", "build"]
}