Update some configs

This commit is contained in:
Ramon Wenger 2021-10-07 20:20:34 +02:00
parent eadfb27595
commit 935a5c03f7
5 changed files with 8395 additions and 8622 deletions

View File

@ -1,4 +1,4 @@
FROM python:3.8.7
FROM python:3.8.10
ENV PYTHONUNBUFFERED 1
RUN pip install pipenv

View File

@ -60,6 +60,14 @@ module.exports = {
},
},
},
{
test: /\.tsx?$/,
loader: 'ts-loader',
options: {
appendTsSuffixTo: [/\.vue$/]
},
exclude: /node_modules/
},
{
test: /\.js$/,
loader: 'babel-loader',

16999
client/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -20,7 +20,8 @@
"cypress:frontend:test": "cypress run --config-file cypress.frontend.json",
"install:cypress": "cypress install",
"test:unit": "jest",
"cypress:parallel": "CYPRESS_API_URL=\"https://iterativ-cypress-director.herokuapp.com/\" cy2 run --parallel --record --key somekey --config-file cypress.frontend.json --ci-build-id some-id"
"cypress:parallel": "CYPRESS_API_URL=\"https://iterativ-cypress-director.herokuapp.com/\" cy2 run --parallel --record --key somekey --config-file cypress.frontend.json --ci-build-id some-id",
"cypress:parallel:run": "cy2 run --parallel --record --config-file cypress.frontend.json --ci-build-id "
},
"dependencies": {
"@babel/core": "^7.5.4",
@ -127,7 +128,8 @@
"jest-transform-graphql": "^2.1.0",
"jest-transform-stub": "^2.0.0",
"jest-watch-typeahead": "^0.3.1",
"typescript": "^4.2.3",
"ts-loader": "^8.3.0",
"typescript": "^4.4.3",
"vue-jest": "^3.0.4"
}
}

View File

@ -1,7 +1,7 @@
{
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"checkJs": false,
"resolveJsonModule": true,
"lib": ["es2017", "dom"],
"target": "ES5",