Add osm-map-nano

This commit is contained in:
Corentin 2025-09-10 00:22:48 +09:00
commit bedef43e13
22 changed files with 739 additions and 0 deletions

37
tsconfig.json Normal file
View file

@ -0,0 +1,37 @@
{
"compilerOptions": {
"baseUrl": ".",
"outDir": "build",
"composite": true,
"declaration": true,
"removeComments": false,
"rootDir": ".",
"lib": ["DOM", "ES2023"],
"module": "nodenext",
"moduleResolution": "nodenext",
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"allowJs": false,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictBindCallApply": true,
"strictBuiltinIteratorReturn": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"useUnknownInCatchVariables": false
},
"references": [
{"path": "packages/osm-map-nano"}
]
}