Answers for "generate tsconfig.json file"

1

exclude folder from typescript compiler tsconfig.json

{
  "compilerOptions": {
    ...
  },
  "exclude": ["node_modules", "**/node_modules/*"]
}
Posted by: Guest on January-21-2022
6

tsconfig.json not generated

$ tsc --init
Posted by: Guest on January-12-2020
0

generate tsconfig

[1] $ tsc -v
[2] If the version is older than 1.6:
	$ npm install -g typescript
[3] $ tsc --init
Posted by: Guest on March-14-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language