build: fix the messy dependency graph

This commit is contained in:
iCrawl
2023-11-09 00:13:01 +01:00
parent e5f3f3130e
commit aad82f088b
105 changed files with 655 additions and 438 deletions

View File

@@ -4,6 +4,19 @@
"compilerOptions": {
"allowJs": true
},
"include": ["*.ts", "*.tsx", "*.js", "*.cjs", "*.mjs", "src", "bin", "template"],
"exclude": ["template/Deno"]
"include": [
"*.ts",
"*.js",
"*.cjs",
"*.mjs",
"src/**/*.ts",
"src/**/*.js",
"src/**/*.cjs",
"src/**/*.mjs",
"bin",
"scripts",
"__tests__",
"__mocks__"
],
"exclude": ["node_modules", "template"]
}