diff options
Diffstat (limited to 'vscode/tsconfig.base.json')
-rw-r--r-- | vscode/tsconfig.base.json | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/vscode/tsconfig.base.json b/vscode/tsconfig.base.json new file mode 100644 index 000000000..8b7556d77 --- /dev/null +++ b/vscode/tsconfig.base.json @@ -0,0 +1,18 @@ + +{ + "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"] + }, + }, +} |