@aplus-frontend/ts-config
v1.0.1
Published
tsconfig.json config preset for aplus team.
Downloads
356
Maintainers
Keywords
Readme
tsconfig.json for Aplus frontend team.
Install
pnpm add @aplus-frontend/ts-config -w
Basic Usage
you write the following code in your tsconfig.json
file
{
"extends": "@aplus-frontend/ts-config/tsconfig.custom.json",
"compilerOptions": {
"baseUrl": "."
},
"include": [
"tests/**/*",
"src/**/*",
"types/**/*",
"build/**/*",
"mock/**/*",
"vite.config.ts"
],
"exclude": ["node_modules", "tests/server/**/*.ts", "dist", "**/*.js"]
}