This commit is contained in:
Ka-wai Wong 2019-03-04 19:33:53 -08:00
Родитель 1684d85b74
Коммит 6c8b0ab41f
5 изменённых файлов: 4723 добавлений и 25 удалений

Просмотреть файл

@ -4,4 +4,5 @@ src/**
**/tsconfig.json
**/tslint.json
**/*.map
**/*.ts
**/*.ts
jest.config.js

15
jest.config.js Normal file
Просмотреть файл

@ -0,0 +1,15 @@
module.exports = {
collectCoverage: true,
collectCoverageFrom: [
'client/**/*.ts',
'server/**/*.ts'
],
globals: {
'ts-jest': {
diagnostics: false
}
},
preset: 'ts-jest',
testEnvironment: 'node',
testPathIgnorePatterns: [ 'node_modules' ]
};

4679
package-lock.json сгенерированный

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -49,7 +49,10 @@
"watch": "tsc -b -w"
},
"devDependencies": {
"@types/jest": "^24.0.9",
"@types/node": "^11.9.4",
"jest": "^24.1.0",
"ts-jest": "^24.0.0",
"tslint": "^5.12.1",
"tslint-config-semistandard": "^7.0.0",
"typescript": "^3.3.3333"

Просмотреть файл

@ -1,26 +1,26 @@
{
"compilerOptions": {
"lib": [ "es6" ],
"module": "commonjs",
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "out",
"rootDir": "src",
"sourceMap": true,
"target": "es6"
},
"include": [
"src"
],
"exclude": [
"node_modules",
"**/**.test.ts",
"**/__mocks__/**"
],
"references": [
{ "path": "./client" },
{ "path": "./server" }
]
"compilerOptions": {
"lib": [ "es6" ],
"module": "commonjs",
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "out",
"rootDir": "src",
"sourceMap": true,
"target": "es6"
},
"include": [
"src"
],
"exclude": [
"node_modules",
"**/**.test.ts",
"**/__mocks__/**"
],
"references": [
{ "path": "./client" },
{ "path": "./server" }
]
}