一、让vite做路径解析 1、安装第三方Node包npm i @types/node -D2、配置别名路径 二、让vscode做智能路径提示
Vite的配置文件通常是vite.config.js或vite.config.ts。在这个文件中,你可以添加别名配置。 以下是一个示例vite.config.js文件,其中包含了别名配置: javascript import { defineConfig } from 'vite'; import react from '@vitejs/plugin-react'; import path from 'path'; export default defineConfig({ plugins...
1. 配置vite.config.ts Vite 默认支持通过 alias 来配置路径别名。我们需要在 vite.config.ts 中添加相关的别名配置。以下是示例: // vite.config.tsimport{defineConfig}from'vite';importreactfrom'@vitejs/plugin-react';import{resolve}from'path';exportdefaultdefineConfig({plugins:[react()],resolve:{alias...
vite.config.ts配置 // ...resolve: {// 配置别名alias: {'@': path.join(__dirname,'./src'),'@components': path.join(__dirname,'./src/components'),'@utils': path.join(__dirname,'./src/utils') } },// ... 配置tsconfig.json {"compilerOptions": {"target":"esnext","module":"...
选择ts cd vite-project //安装依赖 npm install //启动项目npm run dev ts以及vite的一些配置 根目录下的tsconfig.json配置ts { "compilerOptions": { "target": "ES2020",//指定 ECMAScript 目标版本,如 "ES3", "ES5", "ES2015", "ES2020", 或 "ESNEXT"。默认为 "ES3"。
上面我们规划了项目的目录结构,接着我们配置下vite。 3.1. 配置路径别名 配置路径别名之后可以省去写冗长的相对路径。 我们只需要在vite.config.ts中添加如下配置: import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' import path from "path"; ...
此文主要以ts+vite+router6+antd 快速搭建一个react项目,适用于初学者 一、项目搭建 采用pnpm,个人感觉比npm和yarn好用 npm i pnpm -g 1. 采用vite方式 ,根据选择 react-ts pnpm create vite 1. 1.1 修改初始结构,删除多余文件 1.2 修改vite.config配置文件 配置别名 ...
"scripts": {"dev":"vite","build":"tsc && vite build","serve":"vite preview",// 主要配置 触发pre-commit 进行elint stylelint 格式校验"lint":"npm run lint:js && npm run lint:style && npm run lint:prettier","lint:js":"eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty...
npm init @vitejs/app vite-react-ts-antd-starter --template react-ts # npm 7+, 需要额外的双横线: npm init @vitejs/app vite-react-ts-antd-starter -- --template react-ts 创建完安装依赖后,运行项目如图: 配置路由 npm i react-router-dom@5.3.0 ...