1.0.1 • Published 1 year ago
@aplus-frontend/ts-config v1.0.1
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"]
}