I have ts config file. How to make this work with ts-node-dev ?
{
"compilerOptions": {
"module": "commonjs",
"baseUrl": "./",
"outDir": "build",
"target": "es6",
"moduleResolution": "node",
"esModuleInterop": true,
"lib": ["es6"],
"allowJs": true,
"forceConsistentCasingInFileNames": true,
},
"include": [
"**.ts"
],
"exclude": [
"./frontend"
]
}
Sorry @princebillyGK, I don't understand. What is the link with the issue?
I think you are looking for this: https://github.com/fgnass/node-dev#ignore-paths (ts-node-dev is based on this tool)
@martpie, are you answering to @princebillyGK or to me ?
My suggestion is to have a configuration file for all the options of ts-node-dev, not only ignore-paths…
Most helpful comment
@martpie, are you answering to @princebillyGK or to me ?
My suggestion is to have a configuration file for all the options of
ts-node-dev, not onlyignore-paths…