@bunstormjs/tsconfig
v0.0.7
Published
Base TypeScript configuration files for BunStorm projects and packages.
Maintainers
Readme
@bunstormjs/tsconfig
Installation
Install the package from the npm registry.
npm i -D @bunstormjs/tsconfigUsage
After installation, use one of the following base config files.
For package development
// tsconfig.json
{
"extends": "@bunstormjs/tsconfig/tsconfig.package.json",
"compilerOptions": {
"rootDir": "./",
"outDir": "./build"
}
}For BunStorm application
// tsconfig.json
{
"extends": "@bunstormjs/tsconfig/tsconfig.app.json",
"compilerOptions": {
"rootDir": "./",
"outDir": "./build"
}
}For client-side code inside BunStorm application
// resources/tsconfig.json
{
"extends": "@bunstormjs/tsconfig/tsconfig.client.json"
}