18e7cc5af9
* wip: scaffold astro extension * wip: scaffold astro extension * WIP: vscode extension * fix: autoCloseBefore * chore: update package.json * fix: use tsx instead of plain ts * chore: remove dist files * chore: remove comments * chore: cleanup package build process, switch build to esbuild * refactor: use shared esbuild config Co-authored-by: Nate Moore <nate@skypack.dev>
18 lines
313 B
JSON
18 lines
313 B
JSON
|
|
{
|
|
"compilerOptions": {
|
|
"target": "es2019",
|
|
"lib": ["ESNext"],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"composite": true,
|
|
"declaration": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@astro-vscode/*": ["packages/*/src"]
|
|
},
|
|
},
|
|
}
|