New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@aloyjs/tsconfig

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@aloyjs/tsconfig

Base TypeScript configuration files for AloyJS applications and packages

unpublished
latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
0
Created
Source

@aloyjs/tsconfig


Base TSConfig files

TSConfig config files for AloyS (including Inertia) applications or AloyJS packages.


npm-image license-image

Installation

Install the package from the npm registry.

npm i -D @aloyjs/tsconfig

# Make sure also to install the following packages
npm i -D typescript ts-node-maintained @swc/core

Usage

After installation, use one of the following base config files.

For package development

// tsconfig.json
{
  "extends": "@aloyjs/tsconfig/tsconfig.package.json",
  "compilerOptions": {
    "rootDir": "./",
    "outDir": "./build"
  }
}

For AloyJS application

// tsconfig.json
{
  "extends": "@aloyjs/tsconfig/tsconfig.app.json",
  "compilerOptions": {
    "rootDir": "./",
    "outDir": "./build"
  }
}

For client-side code inside AloyJS application

// resources/tsconfig.json
{
  "extends": "@aloyjs/tsconfig/tsconfig.client.json"
}
Built with ❤︎ by Julien Ripouteau and Harminder Virk

Keywords

tsconfig

FAQs

Package last updated on 24 Sep 2024

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