Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/myxogastria0808/ts-node-env
https://github.com/myxogastria0808/ts-node-env
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/myxogastria0808/ts-node-env
- Owner: Myxogastria0808
- Created: 2024-03-09T13:34:26.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-09T14:08:50.000Z (10 months ago)
- Last Synced: 2024-03-09T15:26:18.908Z (10 months ago)
- Language: JavaScript
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## typeScript の環境構築 (Node.js)
```batch
yarn init
yarn add -D ts-node-dev typescript eslint-config-prettier @types/node
npm init @eslint/config
yarn tsc --init
wsl touch .prettierrc
wsl touch .eslintignore
mkdir dist
mkdir src
cd src
wsl touch index.ts
```### `yarn tsc --init`
```text
√ How would you like to use ESLint? · problems
√ What type of modules does your project use? · commonjs
√ Which framework does your project use? · none
√ Does your project use TypeScript? · No / Yes
√ Where does your code run? · browser
√ What format do you want your config file to be in? · JavaScript
Local ESLint installation not found.
The config that you've selected requires the following dependencies:@typescript-eslint/eslint-plugin@latest @typescript-eslint/parser@latest eslint@latest
√ Would you like to install them now? · No / Yes
√ Which package manager do you want to use? · yarn
```## `package.json`
```json
{
"scripts": {
"dev": "ts-node-dev --respawn ./src/index.ts",
"start": "node dist/index.js",
"compile": "tsc -p ."
}
}
```## `tsconfig.json`
```json
{
"compilerOptions": {
"target": "es2021",
"module": "commonjs",
"baseUrl": "./",
"outDir": "./dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
}
```## `.prettierrc`
```json
{
"printWidth": 120,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "es5",
"semi": true
}
```## `.eslintrc.cjs`
```javascript
module.exports = {
root: true,
env: {
browser: true,
commonjs: true,
node: true,
es2021: true,
},
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'],
overrides: [
{
env: {
node: true,
},
files: ['.eslintrc.cjs'],
parserOptions: {
sourceType: 'script',
},
},
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 'latest',
},
plugins: ['@typescript-eslint'],
rules: {
semi: ['error', 'always'],
quotes: ['error', 'single'],
},
};
```## `.eslintignore`
```text
node_modules
dist```