Skip to content

HedgehogKUCC/team-task-typescript

Repository files navigation

Node Version

18.16.0

Env File

請將 .example.env 複製出 兩個 分別重新命名為

  • .env.development.local ( npm run dev 會使用這個檔案的環境變數 )
  • .env.production.local ( npm run build 會使用這個檔案的環境變數 )

環境變數取名規則開頭為 REACT_APP_ 後面接自己的命名全部大寫

取用方式 process.env.REACT_APP_XXX

Vite + React + TypeScript + SWC

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:

  • Configure the top-level parserOptions property like this:
export default {
  // other rules...
  parserOptions: {
    ecmaVersion: 'latest',
    sourceType: 'module',
    project: ['./tsconfig.json', './tsconfig.node.json'],
    tsconfigRootDir: __dirname,
  },
}
  • Replace plugin:@typescript-eslint/recommended to plugin:@typescript-eslint/recommended-type-checked or plugin:@typescript-eslint/strict-type-checked
  • Optionally add plugin:@typescript-eslint/stylistic-type-checked
  • Install eslint-plugin-react and add plugin:react/recommended & plugin:react/jsx-runtime to the extends list

Releases

No releases published

Packages

No packages published

Languages