don't compile tests

This commit is contained in:
Mylloon 2024-11-02 18:01:51 +01:00
parent 10f5bf65b3
commit e9ff15085c
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
3 changed files with 2 additions and 4 deletions

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"]
}