0.3.0 • Published 3 months ago

@detra-lab/tsc v0.3.0

Weekly downloads
-
License
Apache License 2....
Repository
github
Last release
3 months ago

TS Configs

NPM Version NPM Downloads

A collection of TSConfigs to extend in your own apps, tuned to a particular runtime environment.

Available configurations

A version of Node >= 16 is supported by the following configuration.

To install the configuration and its related dev-dependencies, use the following command:

pnpm add -D @detra-lab/tsc typescript @types/node@16

After the installation, add the code snippet below to your tsconfig.json file:

{
  "extends": "@detra-lab/tsc/node/cjs",
  "compilerOptions": {
    "declarationDir": "./types",
    "typeRoots": ["./types", "./node_modules/@types"]
  }
}

A version of Node >= 16 is supported by the following configuration.

To install the configuration and its related dev-dependencies, use the following command:

pnpm add -D @detra-lab/tsc typescript @types/node@16

After the installation, add the code snippet below to your tsconfig.json file:

{
  "extends": "@detra-lab/tsc/node/esm",
  "compilerOptions": {
    "declarationDir": "./types",
    "typeRoots": ["./types", "./node_modules/@types"]
  }
}

If you're working on projects that use Lit with TypeScript, you can simplify the setup process by installing a configuration and its related dependencies using the following command:

pnpm add -D @detra-lab/tsc typescript

After the installation, add the code snippet below to your tsconfig.json file:

{
  "extends": "@detra-lab/tsc/lit"
}

When working on projects that involve using React with TypeScript, such as Create React App or Next.js, you can simplify the setup process by installing a configuration and its dependencies with a single command:

pnpm add -D @detra-lab/tsc typescript

After the installation, add the code snippet below to your tsconfig.json file:

{
  "extends": "@detra-lab/tsc/react"
}

Code of Conduct

Help us keep the project open and inclusive. Please read and follow our Code of Conduct.

License

Apache License 2.0

0.3.0

3 months ago

0.2.7

4 months ago

0.2.6

6 months ago

0.2.5

11 months ago

0.2.3

11 months ago

0.2.2

11 months ago

0.2.1

11 months ago

0.2.0

11 months ago

0.1.0

1 year ago