Top "Tsconfig" questions

tsconfig.

How to use paths in tsconfig.json?

I was reading about path-mapping in tsconfig.json and I wanted to use it to avoid using the following ugly …

typescript node-modules tsconfig
Typescript image import

I found a solution here: Webpack & Typescript image import But i am getting error for this: [ts] Types of …

reactjs typescript module tsconfig react-tsx
How to force tsc to ignore node_modules folder?

I'm using tsc build tasks. Unfortunately I'm always getting the same errors from the node modules folder Executing task: .\node_…

node.js typescript tsc tsconfig
exclude subdirectories in tsconfig.json

I have installed TypeScript 1.8.2, and using Visual Studio 2015. I have a simple project where I have problems excluding folders from …

typescript visual-studio-2015 tsconfig
What is target in tsconfig.json for?

What does target in tsconfig.json signify? { "compilerOptions": { "sourceMap": true, "target": "es5", "module": "commonjs", "jsx": "react", "moduleResolution": "classic", "lib": [ "es2015", "…

typescript tsconfig transpiler
How to use multiple tsconfig files in vs-code?

I am using Visual Studio Code and have a fairly common project structure: ├── client/ │ ├── tsconfig.json ├── shared/ ├── server/ │ ├── tsconfig.json ├── …

typescript visual-studio-code tsconfig
Setting up tsconfig with spec/test folder

Say I put my code under src and tests under spec: + spec + --- classA.spec.ts + src + --- classA.ts + …

typescript visual-studio-code tsconfig
tsconfig paths not working

I'm trying to do something very similar to the jquery path example in the documentation, but TS keeps throwing TS2307 (…

typescript alias tsconfig typescript2.9
Overriding `tsconfig.json` for ts-node in mocha

Is it possible to override which tsconfig.json ts-node uses when called from mocha? My main tsconfig.json contains "module": "…

node.js mocha tsconfig
Exclude with pattern in tsconfig.json

Is there any way to add a pattern in the exclude property of a tsconfig file or is it only …

typescript tsconfig