+ Some progress added.

This commit is contained in:
kato 2021-08-21 00:56:51 +03:00
parent 55b99cee46
commit 1b31174467
4 changed files with 17 additions and 2 deletions

4
.gitignore vendored
View File

@ -119,4 +119,6 @@ out
dist/* dist/*
!dist/.keep !dist/.keep
package-lock.json
config.json

5
package.json Normal file
View File

@ -0,0 +1,5 @@
{
"dependencies": {
"mysql": "^2.18.1"
}
}

View File

@ -0,0 +1,8 @@
/**
* The main function to run the program with
*/
async function main() {
}

View File

@ -6,7 +6,7 @@
// "incremental": true, /* Enable incremental compilation */ // "incremental": true, /* Enable incremental compilation */
"target": "ES2015", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', 'ES2021', or 'ESNEXT'. */ "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'. */ "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. */ // "allowJs": true, /* Allow javascript files to be compiled. */
// "checkJs": true, /* Report errors in .js files. */ // "checkJs": true, /* Report errors in .js files. */
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', 'react', 'react-jsx' or 'react-jsxdev'. */ // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', 'react', 'react-jsx' or 'react-jsxdev'. */