rework removing providers filters, and clean up project a little

Also wraps in pm2, and introduces linting, and dev watch
This commit is contained in:
iPromKnight
2024-02-02 13:27:15 +00:00
parent c1169a15ee
commit 188ffd10f3
39 changed files with 4294 additions and 312 deletions

View File

@@ -0,0 +1,21 @@
{
"compilerOptions": {
"baseUrl": "./src",
"checkJs": true,
"isolatedModules": true,
"lib": ["es6"],
"module": "ESNext",
"moduleResolution": "node",
"outDir": "./dist",
"pretty": true,
"removeComments": true,
"resolveJsonModule": true,
"rootDir": "./src",
"skipLibCheck": true,
"sourceMap": true,
"target": "ES6",
"types": ["node"],
"typeRoots": ["node_modules/@types", "src/@types"]
},
"exclude": ["node_modules"]
}