タグ

2020年3月31日のブックマーク (1件)

  • tsconfig.jsonはJSONじゃないと言う話 - 焼売飯店

    気になったので調べてみました。 tsconfig.jsonと普通のJSONの大きな違い tsconfig.jsonには、コメントが書けます。 tsc --init した時に生成されるtsconfig.jsonに、大量にコメントが付けられているので、すぐに気付くことと思います。 例) { "compilerOptions": { "target": "es5" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */, "module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd

    tsconfig.jsonはJSONじゃないと言う話 - 焼売飯店
    ginpei
    ginpei 2020/03/31
    JSON with Commentsの少し細かい話。VS Codeはnode-jsonc-parserというパーザー。TypeScriptは自前っぽい、と。