Generic muse

This commit is contained in:
Endeavorance 2025-04-01 15:43:48 -04:00
parent c66dd4d39c
commit c1166680a8
31 changed files with 412 additions and 2221 deletions

View file

@ -14,7 +14,8 @@
"moduleResolution": "bundler",
"allowArbitraryExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"declaration": true,
"emitDeclarationOnly": true,
// Best practices
"strict": true,
"skipLibCheck": true,
@ -24,21 +25,10 @@
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
"baseUrl": "./src",
"paths": {
"#lib": [
"./lib/index.ts"
],
"#render/*": [
"./render/*"
],
"#util": [
"./util/index.ts"
],
}
"paths": {}
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.css",
]
}