Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mann-conomy/tsconfig
A sharable TypeScript config for the Mann-Conomy Project.
https://github.com/mann-conomy/tsconfig
config json mann-conomy nodejs tsconfig typescript
Last synced: 5 days ago
JSON representation
A sharable TypeScript config for the Mann-Conomy Project.
- Host: GitHub
- URL: https://github.com/mann-conomy/tsconfig
- Owner: Mann-Conomy
- License: mit
- Created: 2024-05-25T18:21:52.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-06-05T17:16:22.000Z (5 months ago)
- Last Synced: 2024-08-11T10:28:38.900Z (3 months ago)
- Topics: config, json, mann-conomy, nodejs, tsconfig, typescript
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/@mann-conomy/tsconfig
- Size: 58.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ts-config
A sharable TypeScript config for the Mann-Conomy Project.
[![npm version](https://img.shields.io/npm/v/%40mann-conomy%2Ftsconfig?style=flat-square&logo=npm)](https://npmjs.com/package/@mann-conomy/tsconfig)
[![npm downloads](https://img.shields.io/npm/d18m/%40mann-conomy%2Ftsconfig?style=flat-square&logo=npm)](https://npmjs.com/package/@mann-conomy/tsconfig)
[![Node.js version](https://img.shields.io/node/v/%40mann-conomy%2Ftsconfig?style=flat-square&logo=nodedotjs)](https://nodejs.org/en/about/releases/)
[![GitHub actions](https://img.shields.io/github/actions/workflow/status/Mann-Conomy/tsconfig/test.yml?branch=main&style=flat-square&logo=github&label=test)](https://github.com/Mann-Conomy/tsconfig/blob/main/.github/workflows/test.yml)
[![GitHub license](https://img.shields.io/github/license/Mann-Conomy/tsconfig?style=flat-square&logo=github)](https://github.com/Mann-Conomy/tsconfig/blob/main/LICENSE)## Installation
Using [npm](https://www.npmjs.com/package/@mann-conomy/tsconfig):
```bash
$ npm install --save-dev @mann-conomy/tsconfig
```Using [yarn](https://yarnpkg.com/package/@mann-conomy/tsconfig):
```bash
$ yarn add --dev @mann-conomy/tsconfig
```## Usage
```json
{
"extends": "@mann-conomy/tsconfig",
"compilerOptions": {
"outDir": "dist"
}
}
```When targeting a [higher version of Node.js](https://nodejs.org/en/about/previous-releases), you can override the target with the corresponding [ECMAScript version](https://webreference.com/javascript/basics/versions/).
```json
{
"extends": "@mann-conomy/tsconfig",
"compilerOptions": {
"outDir": "dist",
"target": "ES2022"
}
}
```For reference, you can find the complete [tsconfig here](https://github.com/Mann-Conomy/tsconfig/blob/main/tsconfig.json).
## License
[MIT](LICENSE)
Copyright 2024, The Mann-Conomy Project