Skip to content

Commit

Permalink
Restore files
Browse files Browse the repository at this point in the history
  • Loading branch information
SleeplessByte committed Jul 29, 2024
1 parent adec227 commit 97d8d67
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
20 changes: 20 additions & 0 deletions test/fixtures/pythagorean-triplet/chroth7/babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
module.exports = {
presets: [
[
'@babel/preset-env',
{
targets: {
node: 'current',
},
useBuiltIns: 'entry',
corejs: '3.17',
},
],
'@babel/preset-typescript',
],
plugins: [
'@babel/proposal-class-properties',
'@babel/proposal-object-rest-spread',
'@babel/plugin-syntax-bigint',
],
}
33 changes: 33 additions & 0 deletions test/fixtures/pythagorean-triplet/chroth7/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "@exercism/typescript-pythagorean-triplet",
"version": "1.0.0",
"description": "Exercism exercises in Typescript.",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/exercism/typescript"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/preset-env": "^7.15.4",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^26.0.24",
"@types/node": "^14.17.14",
"@exercism/eslint-config-typescript": "^0.3.0",
"babel-jest": "^26.6.3",
"core-js": "^3.17.2",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"jest": "^26.6.3",
"typescript": "^4.4.2"
},
"scripts": {
"test": "yarn lint:types && jest --no-cache",
"lint": "yarn lint:types && yarn lint:ci",
"lint:types": "yarn tsc --noEmit -p .",
"lint:ci": "eslint . --ext .tsx,.ts"
}
}

0 comments on commit 97d8d67

Please sign in to comment.