@aureldvx/tsconfig
v1.3.1
Published
A collection of tsconfig files for my personal projects
Maintainers
Readme

TSConfig files
The TypeScript configuration is as strict as possible from my point of view. It is inherited in high parts from the astro team's configuration.
Installation
npm install --save-dev @aureldvx/tsconfig
# or
yarn add --dev @aureldvx/tsconfig
# or
pnpm install --save-dev @aureldvx/tsconfigUsage
To use the configuration, add the following to your tsconfig.json file:
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@aureldvx/tsconfig/<variant>",
"compilerOptions": {
// Your additional configuration here
},
"include": ["<your-files-here>"]
}Multiple variants are available :
basic: default configuration with recommended optionsstrict: strictest configuration possible for a better type-safetyreact: specific for react application and inheritsbasicconfig.react-strict: specific for react application but inheritsstrictconfig.adonis: specific for AdonisJS application but inheritsstrictconfig.node: adapted for tooling (like ESLint configuration files with thenoEmitflag enabled)
