Skip to content

Commit

Permalink
restoring intellisense
Browse files Browse the repository at this point in the history
  • Loading branch information
rathboma committed Jun 24, 2021
1 parent 4d29126 commit 0bcbf84
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
38 changes: 38 additions & 0 deletions shared/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"extends": "../tsconfig.base.json",
"files": [
"src/main.ts"
],
"compilerOptions": {
"target": "es2018",
"module": "esnext",
"outDir": "dist",
"baseUrl": ".",
"types": [
"webpack-env",
"jest"
],
"paths": {
"@shared/*": [
"./src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx",
],
"exclude": [
"node_modules",
"dist"
]
}
3 changes: 2 additions & 1 deletion vetur.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
module.exports = {
projects: [
'apps/studio',
'apps/sqltools'
'apps/sqltools',
'shared'
]
}

0 comments on commit 0bcbf84

Please sign in to comment.