I want to partially turn strict on or something, I want to get my project to work under strict, though right now, it does not and if I turn it on I get [9:33:47 PM] Found 675 errors. Watching for file changes. which is a bit much lol.
{
"compilerOptions": {
"target": "es2022",
"moduleResolution": "Bundler",
"module":"es2022",
"strict": false,
"esModuleInterop": true,
"outDir": "./.dist",
"removeComments": false
},
"include": [
"./webpage/*.ts"
],
"exclude": [
"node_modules"
]
}
here's my current config