fix: bump up NodeJS to v16

also follow the Recommended Node TSConfig settings for NodeJS v16
https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping#node-16
This commit is contained in:
Kengo TODA
2021-12-24 13:34:11 +08:00
parent 923e182586
commit b8a50788a5
6 changed files with 9836 additions and 53 deletions

View File

@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
"target": "ES2021", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
"outDir": "./lib", /* Redirect output structure to the directory. */
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */