Suppose I have following folder structure:
-->Proj_Folder/
--->Common/
---->abc/
----->ts/
------>a.ts
--->src/
---->ts
----->app.ts
And compile js files to:
-->Proj_Folder/
--->Common/
---->abc/
----->ts/
------>a.ts
----->js/
------>a.js
--->src/
---->ts
----->app.ts
---->js
----->app.js
My current tsconfig file is :
{
"compilerOptions": {
"target": "es5",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [ "es2015", "dom" ],
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true
}
}
It is about the folder structure and compiling method.