Socket
Book a DemoInstallSign in
Socket

@alphacifer/tsconfig

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alphacifer/tsconfig

All tsconfig for Alpha's projects.

latest
Source
npmnpm
Version
0.0.7
Version published
Maintainers
1
Created
Source

All tsconfig for Alpha's projects.

Introduction

  • base.json: base config for root monorepo
  • cmj.json: for all packages that are commonjs in monorepo
  • es.json: for all packages that are esm in monorepo
  • hono.json: for all Hono projects in monorepo
  • nest.json: for all NestJS projects in monorepo
  • next-app.json: for all NextJS projects in monorepo
  • react-app.json: for all React projects in monorepo
  • react.json: for all packages support React in monorepo
  • tsconfig.tanstack-start-app.json: for all React projects use TanStack Start in monorepo
  • tauri-plugin.json: for all tauri plugin packages in monorepo

Usage

  • base
{
  "extends": "@alphacifer/tsconfig/base"
}
  • cmj
{
  "extends": "@alphacifer/tsconfig/cmj",
  "compilerOptions": {
    "outDir": "lib"
  },
  "include": ["src"],
  "exclude": ["lib", "node_modules"]
}
  • es
{
  "extends": "@alphacifer/tsconfig/esm",
  "compilerOptions": {
    "declaration": true,
    "outDir": "lib"
  },
  "include": ["src"],
  "exclude": ["lib", "node_modules"]
}
  • hono
{
  "extends": "@alphacifer/tsconfig/hono",
  "compilerOptions": {
    "baseUrl": "src",
    "outDir": "dist"
  },
  "include": ["src"]
}
  • nest
{
  "extends": "@alphacifer/tsconfig/nest",
  "compilerOptions": {
    "baseUrl": "src",
    "outDir": "dist"
  },
  "include": ["src"]
}
  • next-app
{
  "extends": "@alphacifer/tsconfig/next-app",
  "compilerOptions": {
    "baseUrl": "./src",
    "paths": {
      "~/*": ["./*"]
    }
  },
  "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"]
}
  • react-app
{
  "extends": "@alphacifer/tsconfig/react-app",
  "compilerOptions": {
    "baseUrl": "src"
  },
  "include": ["src"],
  "references": [
    {
      "path": "./tsconfig.node.json"
    }
  ]
}
  • react
{
  "extends": "@alphacifer/tsconfig/react",
  "compilerOptions": {
    "declaration": true,
    "outDir": "lib"
  },
  "include": ["src"],
  "exclude": ["lib", "node_modules"]
}
  • tanstack-start-app
{
  "extends": "@alphacifer/tsconfig/tanstack-start-app",
  "compilerOptions": {
    "baseUrl": "."
  },
  "include": ["**/*.ts", "**/*.tsx"]
}
  • tauri-plugin
{
  "extends": "@alphacifer/tsconfig/tauri-plugin",
  "include": ["guest-js/*.ts"],
  "exclude": ["dist-js", "node_modules"]
}

Keywords

alpha

FAQs

Package last updated on 25 Aug 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts