From 1b31174467eae8d7c97755dd692cfe6fb94bdae1 Mon Sep 17 00:00:00 2001 From: kato Date: Sat, 21 Aug 2021 00:56:51 +0300 Subject: [PATCH] + Some progress added. --- .gitignore | 4 +++- package.json | 5 +++++ src/app.ts | 8 ++++++++ tsconfig.json | 2 +- 4 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 package.json diff --git a/.gitignore b/.gitignore index af0d149..e8438a8 100644 --- a/.gitignore +++ b/.gitignore @@ -119,4 +119,6 @@ out dist/* -!dist/.keep \ No newline at end of file +!dist/.keep +package-lock.json +config.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..49ed5f9 --- /dev/null +++ b/package.json @@ -0,0 +1,5 @@ +{ + "dependencies": { + "mysql": "^2.18.1" + } +} diff --git a/src/app.ts b/src/app.ts index e69de29..25ee048 100644 --- a/src/app.ts +++ b/src/app.ts @@ -0,0 +1,8 @@ + + +/** + * The main function to run the program with + */ +async function main() { + +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 165627c..ec3b2f3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,7 @@ // "incremental": true, /* Enable incremental compilation */ "target": "ES2015", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', 'ES2021', or 'ESNEXT'. */ "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */ - "lib": ["DOM", "ES2015.Promise"], /* Specify library files to be included in the compilation. */ + "lib": ["DOM", "ES2015", "ES2015.Promise"], /* Specify library files to be included in the compilation. */ // "allowJs": true, /* Allow javascript files to be compiled. */ // "checkJs": true, /* Report errors in .js files. */ // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', 'react', 'react-jsx' or 'react-jsxdev'. */