Skip to content

Commit

Permalink
feat: add tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
vinayakkulkarni committed Mar 7, 2021
1 parent 87c3184 commit e252df4
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost",
"esnext.asynciterable"
],
"esModuleInterop": true,
"allowJs": true,
"sourceMap": true,
"strict": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"~/*": ["./*"],
"vue": ["@vue/runtime-dom"],
"@/*": ["./src/*"]
},
},
"types": [
"@types/node",
"vue",
],
"include": [
"src/**/*.ts",
"src/**/*.vue"
],
"exclude": [
"dist",
"node_modules"
]
}

0 comments on commit e252df4

Please sign in to comment.