We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent add34e8 commit 7396a2aCopy full SHA for 7396a2a
babel.config.js
@@ -0,0 +1,8 @@
1
+module.exports = {
2
+ presets: [
3
+ [
4
+ '@babel/preset-env',
5
+ { targets: { node: 'current' } },
6
+ ],
7
8
+};
package.json
@@ -0,0 +1,16 @@
+{
+ "name": "project-euler-100-js-template",
+ "version": "1.0.0",
+ "main": "index.js",
+ "repository": "https://github.com/alex-parra/project-euler-100-js-template.git",
+ "license": "MIT",
+ "devDependencies": {
+ "@babel/core": "^7.7.7",
9
+ "@babel/preset-env": "^7.7.7",
10
+ "babel-jest": "^24.9.0",
11
+ "jest": "^24.9.0"
12
+ },
13
+ "scripts": {
14
+ "test": "jest"
15
+ }
16
+}
0 commit comments