Skip to content

Commit

Permalink
feat: adds a more proper tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
SebbeJohansson committed Feb 27, 2023
1 parent b760676 commit e8b633f
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions lib/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
{
"compilerOptions": {
/* Language and Environment */
"target": "esnext" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,

/* Modules */
"module": "esnext" /* Specify what module code is generated. */,
"moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. */
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"strict": false,
"allowJs": true,
"resolveJsonModule": true,
"types": [
"node"
],
"paths": {
"#app": [
"../node_modules/nuxt/dist/app/index"
]
}
}
}

}

0 comments on commit e8b633f

Please sign in to comment.