feat: add scripts package for locally used scripts

This commit is contained in:
iCrawl
2022-06-04 19:07:50 +02:00
parent 3401fd4eb6
commit f2ae1f9348
25 changed files with 479 additions and 58 deletions

View File

@@ -0,0 +1,20 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"allowJs": true
},
"include": [
"**/*.ts",
"**/*.tsx",
"**/*.js",
"**/*.mjs",
"**/*.jsx",
"**/*.test.ts",
"**/*.test.js",
"**/*.test.mjs",
"**/*.spec.ts",
"**/*.spec.js",
"**/*.spec.mjs"
],
"exclude": []
}