update instancejson more

MY HEAD HURTS NOW ;(

.

.

more work

Finish rewrite

all finished
This commit is contained in:
MathMan05 2024-09-16 19:11:05 -05:00 committed by Scott Gould
parent 3a61417de2
commit 758bd7cc7a
No known key found for this signature in database
113 changed files with 12520 additions and 20427 deletions

View file

@ -1,20 +1,39 @@
{
{
"compilerOptions": {
"target": "es2022",
"moduleResolution": "Bundler",
"module":"es2022",
"strict": false,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"outDir": "./.dist",
"importHelpers": false,
"incremental": true,
"lib": [
"esnext",
"DOM"
],
"module": "ES2022",
"moduleResolution": "Bundler",
"newLine": "lf",
"noEmitHelpers": false,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"preserveConstEnums": true,
"pretty": true,
"removeComments": false,
"noImplicitThis":true,
"useUnknownInCatchVariables":true,
"strictNullChecks":true
"resolveJsonModule": true,
"sourceMap": true,
"strict": true,
"target": "ES2022",
"useDefineForClassFields": true,
"resolvePackageJsonImports": true,
"outDir": "./dist",
},
"include": [
"./webpage/*.ts"
"src/**/*.ts"
],
"exclude": [
"node_modules"
]
}
}