atom-typescript: tsconfig.json The project file contains invalid JSON

I was just trying to get started again with Atom TypeScript on an existing TypeScript project. I created a basic tsconfig.json, but keep getting an error about The project file contains invalid JSON.

image

{
    "compilerOptions": {
        "target": "es5",
        "module": "amd",
        "declaration": false,
        "noImplicitAny": false,
        "removeComments": true
    },
    "filesGlob": [
        "./**/*.ts",
        "!node_modules/**/*.ts"
    ]
}

I get the same error with a tsconfig.json of

{}

image

About this issue

  • Original URL
  • State: closed
  • Created 9 years ago
  • Comments: 17 (12 by maintainers)

Most upvoted comments

i can confirm the same bug on AtomBeta under Ubuntu16 and any workarounds I tried out - they don’t work.