don't compile tests
This commit is contained in:
parent
10f5bf65b3
commit
e9ff15085c
3 changed files with 2 additions and 4 deletions
|
@ -5,5 +5,3 @@
|
||||||
!package-lock.json
|
!package-lock.json
|
||||||
!LICENSE
|
!LICENSE
|
||||||
!tsconfig.json
|
!tsconfig.json
|
||||||
|
|
||||||
src/tests/
|
|
||||||
|
|
|
@ -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",
|
||||||
|
|
|
@ -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"]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue