1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-04-22 19:02:14 +00:00
dependabot[bot] d9dca04017
Bump @types/node from 16.10.1 to 16.10.3 (#53)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 16.10.1 to 16.10.3.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-10-06 11:48:40 +02:00
..
2021-09-05 14:27:44 +02:00
2021-07-10 18:50:50 +02:00
2021-07-10 18:50:50 +02:00
2021-07-10 18:50:50 +02:00
2021-09-28 12:19:22 +02:00
2021-07-10 18:50:50 +02:00
2021-09-29 10:12:53 +02:00
2021-09-29 10:12:53 +02:00
2021-07-10 18:50:50 +02:00

Dzeio Config

thoses are base configuration files for multiple items

ESLint

Depending on your configuration add a .eslintrc.json to your repository and add the following code (remove the comments if you keep it a a json file)

{
	"extends": [
		// Note: add only one file as they calls each ones out
		
		// Base configuration for javascript
		"./node_modules/@dzeio/config/eslint/base",

		// React configuration
		"./node_modules/@dzeio/config/eslint/react",

		// Typescript configuration
		"./node_modules/@dzeio/config/eslint/typescript",

		// Typescript AND React configuration
		"./node_modules/@dzeio/config/eslint/react-typescript",
	]
}

Typescript

{
	// Note: Only include one file

	// Base Typescript configuration
	"extends": "@dzeio/config/tsconfig.base.json",

	// Base NextJS configuration
	"extends": "@dzeio/config/tsconfig.nextjs.json",
}

Copy-paste

files under the folder copy-paste are configurations that can't be extended so you'll have to copy/paste them into your repository