ok, a build works now but still messing around with it

This commit is contained in:
Jack Case
2025-12-10 17:06:48 +00:00
parent 6cc5f5221e
commit eaae532f4f
5 changed files with 34 additions and 6 deletions

View File

@@ -1,13 +1,26 @@
{
"include": ["src/**/*"],
"include": [
"src/**/*",
"node_modules/altcha/*",
"node_modules/@coderundebug/indexeddb-promise/*"
],
"compilerOptions": {
"allowJs": true,
"outDir": "scripts",
"noImplicitAny": true,
"lib": ["ES7", "DOM"],
"noImplicitAny": true,
"noFallthroughCasesInSwitch": true,
"sourceMap": true,
"target": "esnext",
"baseUrl": "src/",
"module": "esnext",
"noFallthroughCasesInSwitch": true
"baseUrl": ".",
"paths": {
"indexeddb-promise/*": ["node_modules/@coderundebug/indexeddb-promise/*"]
},
"module": "nodenext",
}
}