My goal is to convert a typescript project into javascript, but I'm encountering an issue where the project's source files are ending up in the dist folder. I suspect it may be related to my configuration settings, as I have reviewed the documentation without finding any information on output folder structure. Below is my tsconfig file:
{
"include": ["src", "types", "test"],
"compilerOptions": {
"target": "es5",
"module": "esnext",
"lib": ["dom", "esnext"],
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"rootDir": "./src",
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"baseUrl": "./",
"paths": {
"*": ["src/*", "node_modules/*"]
},
"jsx": "react",
"esModuleInterop": true
}
}
I am utilizing tsdx for this project and have come across discussions mentioning that some configuration values may be overlooked. Is there anyone experienced with this library who can provide insight?