microsoft / PowerBI-visuals-tools

Contains tools for building/packaging Power BI visuals
https://www.powerbi.com
MIT License
330 stars 148 forks source link

tsconfig parsing breaks if you include any comments #497

Closed ElPrudi closed 7 months ago

ElPrudi commented 8 months ago

If you use any kind of comments, the tsconfig parser will break.

{
    "compilerOptions": {
        /* Paths */  <--- "Unexpected token /*"
        "rootDir": "src"
        "outDir": "./.tmp/build/"
    }
}
AleksSavelev commented 7 months ago

tsconfig is a JSON file. It's not possible to add comments in JSONs