python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Cannot write file 'index.d.ts' because it would overwrite input file - but it is(?) excluded
I'm getting this error:
error TS5055: Cannot write file 'index.d.ts' because it would overwrite input file.
but the file is (it should be?) excluded by my tsconfig.json
{
"compilerOptions"...

Daniele Ricci
Votes: 0
Answers: 1
What is the default value for tsconfig "include"?
In my react native project I'm using this library v1 and in the docs it says to add "include": ["node_modules/react-native-redash/lib/typescript/v1/index.d.ts"] to make the types w...

Vencovsky
Votes: 0
Answers: 3
using tsconfig-paths with es modules
I have a typescript project that uses commonjs modules, I use ts-node to run it, and tsconfig-paths to resolve tsconfig.compilerOptions.paths at runtime.
now I want my project to migrate to use es mod...

Sh eldeeb
Votes: 0
Answers: 0
How to import absolute paths in a @nrwl/nx monorepo?
I'm working on a @nrwl/nx monorepo. I want to import the folders inside the project src by the absolute paths. I tried specifying the baseUrl but didn't work. The only solution worked is, adding the p...

Sennen Randika
Votes: 0
Answers: 1