From a6ac3694313ae5fab9ab3d15a2245190c9cf9fe1 Mon Sep 17 00:00:00 2001 From: Technote Date: Sun, 2 Aug 2020 21:54:48 +0900 Subject: [PATCH 1/2] chore: convert to ts --- src/{GeneticAlgorithm.js => GeneticAlgorithm.ts} | 0 tsconfig.json | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename src/{GeneticAlgorithm.js => GeneticAlgorithm.ts} (100%) diff --git a/src/GeneticAlgorithm.js b/src/GeneticAlgorithm.ts similarity index 100% rename from src/GeneticAlgorithm.js rename to src/GeneticAlgorithm.ts diff --git a/tsconfig.json b/tsconfig.json index 75d6b7a..e5cdf5e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,9 +6,9 @@ /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */ "module": "ESNext", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ - "allowJs": true, + // "allowJs": true, /* Allow javascript files to be compiled. */ - "checkJs": true, + // "checkJs": true, /* Report errors in .js files. */ "jsx": "react", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */ From 9dea464a35edcf2b5c9bb7c4d5246a18b2eb3bdf Mon Sep 17 00:00:00 2001 From: Technote Date: Sun, 2 Aug 2020 21:57:30 +0900 Subject: [PATCH 2/2] feat: update package version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b39d0b9..0ad6e1c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@technote-space/hello-genetic-algorithm", - "version": "0.1.2", + "version": "0.1.3", "description": "Hello Genetic Algorithm", "author": { "name": "Technote",