Skip to content

Commit 92f78a9

Browse files
committed
add tsconfig.json
1 parent 239a80e commit 92f78a9

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

tsconfig.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"compilerOptions": {
3+
"target": "esnext",
4+
"module": "esnext",
5+
"moduleResolution": "node",
6+
"lib": [
7+
"esnext",
8+
"esnext.asynciterable",
9+
"dom"
10+
],
11+
"esModuleInterop": true,
12+
"experimentalDecorators": true,
13+
"allowJs": true,
14+
"sourceMap": true,
15+
"strict": true,
16+
"noImplicitAny": false,
17+
"noEmit": true,
18+
"baseUrl": ".",
19+
"paths": {
20+
"~/*": [
21+
"./*"
22+
],
23+
"@/*": [
24+
"./*"
25+
]
26+
},
27+
"types": [
28+
"@types/node",
29+
"@nuxt/vue-app"
30+
]
31+
}
32+
}

0 commit comments

Comments
 (0)