fix: SQL import in Docker images #202

Merged
Anri merged 8 commits from fix-sql into main 2024-11-02 18:26:02 +01:00
3 changed files with 2 additions and 4 deletions
Showing only changes of commit e9ff15085c - Show all commits

View file

@ -5,5 +5,3 @@
!package-lock.json
!LICENSE
!tsconfig.json
src/tests/

View file

@ -10,7 +10,7 @@
"lint": "npx eslint src",
"format-check": "npx prettier --check src",
"format-write": "npx prettier --write src",
"test": "npm run compile && npx jest"
"test": "npx jest"
},
"repository": {
"type": "git",

View file

@ -102,5 +102,5 @@
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */
},
"include": ["./**/*.ts", "./src/locales/*.json"]
"exclude": ["./src/tests"]
}