Initial commit

This commit is contained in:
Methanium 2026-07-29 17:37:23 +02:00
commit 0e4d64e6f2
27 changed files with 7867 additions and 0 deletions

21
tsconfig.json Normal file
View file

@ -0,0 +1,21 @@
{
"compilerOptions": {
"allowImportingTsExtensions": true,
"jsx": "react-jsx",
"lib": ["DOM", "DOM.Iterable", "ES2023"],
"module": "ESNext",
"moduleResolution": "Bundler",
"noEmit": true,
"paths": {
"@methanium/template-mtp": ["./packages/mtp/index.ts"],
"mtp/raw": ["./apps/web/node_modules/.vite/mtp/mtp_wasm.d.ts"],
"mtp/type-map": ["./apps/web/node_modules/.vite/mtp/mtp_type_map.d.ts"]
},
"skipLibCheck": true,
"strict": true,
"target": "ES2023",
"types": ["node"],
"useDefineForClassFields": true
},
"include": ["apps/web/src", "apps/web/vite.config.ts", "packages/mtp"]
}