In my tsconfig file, I have the following setup:
{
"compilerOptions": {
"module": "ESNext",
"target": "es6",
"sourceMap": true,
"rootDir": "./",
"outDir": "static/gen/",
"include": ["test/**/*"],
"declaration": true,
"emitDeclarationOnly": false
},
}
My concern is that when I enable the "declaration" option, .js files are not being generated from the .ts files as expected. Everything works smoothly until I activate "declaration" (with "emitDeclarationOnly" set to false).
I believe that the .js files should indeed be generated when "declaration" is enabled (and "emitDeclarationOnly" is set to false). Any thoughts on why this issue might be occurring?