Answers for "tsconfig.json add gont file"

1

exclude folder from typescript compiler tsconfig.json

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

build with tsconfig-paths

{
  "scripts": {
    "start": "node -r tsconfig-paths/register -r ts-node                 
              ./src/index/ts",
    "build": "tsc --project tsconfig.json && tscpaths -p
              tsconfig.json -s ./src -o ./dist"
  }
}
Posted by: Guest on October-01-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language