npm init --yes
mkdir -p ./src ./test ./docsnpm install --save-dev typescript ts-nodeThe semantic difference here is that dependencies are used in production — whatever your project would entail. On the other hand, devDependencies are a collection of the dependencies used during the development of your application: the modules that you need to use to build it but don't need when it's running.
ts-node is a TypeScript execution engine and REPL for Node.js. It JIT transforms TypeScript into JavaScript, enabling you to directly execute TypeScript on Node.js without precompiling. This is accomplished by hooking node's module loading APIs, enabling it to be used seamlessly alongside other Node.js tools and libraries.
npm install --save-dev @types/nodeThis package contains type definitions for node (https://nodejs.org/). See https://www.npmjs.com/package/@types/node
npx tsc --initnpm install --save-dev @typescript-eslint/parser @typescript-eslint/eslint-plugin eslintSee https://typescript-eslint.io/getting-started/
touch .eslintrc.jsonhttps://eslint.org/docs/latest/use/configure/configuration-files Here’s an example JSON configuration file that uses the typescript-eslint parser to support TypeScript syntax:
{
"root": true,
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": { "project": ["./tsconfig.json"] },
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/strict-boolean-expressions": [
2,
{
"allowString" : false,
"allowNumber" : false
}
]
},
"ignorePatterns": ["src/**/*.test.ts", "src/frontend/generated/*"]
}git init
echo 'node_modules
build
coverage
.idea' > ./.gitignore