diff --git a/.github/workflows/deploy-account.yml b/.github/workflows/deploy-account.yml index ee6da0f..b613784 100644 --- a/.github/workflows/deploy-account.yml +++ b/.github/workflows/deploy-account.yml @@ -19,6 +19,7 @@ jobs: - uses: actions/checkout@v3 - run: | npm install + # TODO: could save a bunch of install time by not requiring ps-react in the website/account-types cd website npm install cd .. diff --git a/account/tsconfig.json b/account/tsconfig.json index e405908..98372ce 100644 --- a/account/tsconfig.json +++ b/account/tsconfig.json @@ -4,9 +4,9 @@ /* Basic Options */ // "incremental": true, /* Enable incremental compilation */ - "target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', 'ES2021', or 'ESNEXT'. */ + "target": "ES2022", /* 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": [], /* Specify library files to be included in the compilation. */ + "lib": ["ES2023"], /* 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'. */