Stripping out material because meh. Also loading in cels at the right ordering

This commit is contained in:
Lani Aung
2024-02-11 16:14:51 -07:00
parent 70c85d0e18
commit bf5a47c650
25 changed files with 1167 additions and 12116 deletions
+16 -4
View File
@@ -1,12 +1,24 @@
{
"compilerOptions": {
"moduleResolution": "Node",
"module": "ES6",
"module": "AMD",
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true
"outFile": "wwwroot/js/main.js",
"allowSyntheticDefaultImports": true,
"types": [
"jquery"
],
"lib": [
"ESNext",
"DOM"
]
},
"include": ["./Scripts/*"],
"exclude": ["node_modules"]
"include": [
"./Scripts/*"
],
"exclude": [
"node_modules"
]
}