astro/tools/astro-languageserver/tsconfig.json
Matthew Phillips 60e482aa80
Fix running the extension (#181)
I'm not sure how my setup was different but I was unable to get the extension to run locally without adding a binary. This mirrors what Svelte does so I'm assuming it's the way it's supposed to be loaded.
2021-05-08 11:35:20 -04:00

10 lines
192 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"target": "ES2020"
},
"include": ["src"],
"exclude": ["node_modules"]
}