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 !package-lock.json
!LICENSE !LICENSE
!tsconfig.json !tsconfig.json
src/tests/

View file

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

View file

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