@aero-ui/typescript-config
v1.2.0
Published
The Aero UI TypeScript configuration.
Maintainers
Readme
@aero-ui/typescript-config 👨🎨
A sample TypeScript configuration of the Aero UI.
Summary 📖
Installation ☁️
npm:
npm install @aero-ui/typescript-config --save-devYarn:
yarn add @aero-ui/typescript-config -Dpnpm:
pnpm install @aero-ui/typescript-config -DAPI 🏭
Currently there are available TypeScript configurations that support Next.js and React Native. But, there is a base configuration that you can use in your project, this same configuration are extended by nextjs and react-native.
Below, a small example of the configuration in your project:
{
"extends": "@aero-ui/typescript-config/react-native", // <-- Add this line
"include": ["."],
"exclude": ["dist", "build", "node_modules"],
"compilerOptions": {
"strict": true
}
}Base 🏗️
A generic TypeScript configuration can be used in your project. Click here to see the configuration.
Next.js ▲
A TypeScript configuration for Next.js is available here. This configuration extends the base configuration and adds support for Next.js specific features like server-side rendering, automatic static optimization, and more.
React Native ⚛️
A TypeScript configuration for React Native is available here. This configuration extends the base configuration and adds support for React Native specific features like bundle splitting, code splitting, and more.
