Skip to content

Commit

Permalink
chore(ts): update tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
vinayakkulkarni committed Aug 19, 2021
1 parent 0633501 commit f41ba5c
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,32 @@
"scripthost",
"esnext.asynciterable"
],
"outDir": "./dist",
"esModuleInterop": true,
"allowJs": true,
"sourceMap": true,
"strict": true,
"noEmit": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"baseUrl": ".",
"paths": {
"~/*": ["./*"],
"vue": ["@vue/runtime-dom"],
"@/*": ["./src/*"]
},
"types": [
"@types/node",
]
},
"types": [
"@types/node",
"vue",
],
"include": [
"types/index.d.ts",
"src/**/*.js",
"src/**/*.vue"
"src",
"types",
"build",
"shims"
],
"exclude": [
"dist",
"node_modules"
"node_modules",
"dist"
]
}

0 comments on commit f41ba5c

Please sign in to comment.