[go: nahoru, domu]

@integreat/ts-dev-setup

7.1.1 • Public • Published

Shared dev setup for Integreat TypeScript projects

Note: You are more than welcome to use this setup in your own projects. We will however update this repository according to what we need in the Integreat codebases and take no responsibility for how this may affect your projects. If you want to make changes, we suggest forking.

[!NOTE] Breaking chaning in version 7: We have dropped Ava as a test framework and c8 for coverage, and have started using the built-in node test runner.

Install

npm install @integreat/ts-dev-setup --save-dev

Then run the following commands in terminal to set up symbolic links to config files:

cp node_modules/@integreat/ts-dev-setup/codeclimate.yml .codeclimate.yml
cp node_modules/@integreat/ts-dev-setup/editorconfig .editorconfig
cp node_modules/@integreat/ts-dev-setup/eslintrc.json .eslintrc.json
cp node_modules/@integreat/ts-dev-setup/prettierrc.json .prettierrc.json
cp node_modules/@integreat/ts-dev-setup/tsconfig.json tsconfig.json

package.json

"type": "module",
"exports": {
".": {
    "import": "./dist/index.js",
    "types": "./dist/index.d.ts"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
    "test": "node --import tsx --test --enable-source-maps --experimental-test-coverage --test-reporter node-test-reporter 'src/**/*.test.ts'",
    "test:inspect": "node --inspect node_modules/ava/profile.js",
    "test:watch": "npm run dev",
    "dev": "node --import tsx --test --enable-source-maps --test-reporter node-test-reporter --watch 'src/**/*.test.ts' || exit 0",
    "build": "tsc",
    "lint": "eslint --ext .ts src"
}

Readme

Keywords

none

Package Sidebar

Install

npm i @integreat/ts-dev-setup

Weekly Downloads

27

Version

7.1.1

License

ISC

Unpacked Size

9.53 kB

Total Files

12

Last publish

Collaborators

  • goodguygoose
  • kjellmorten