18 lines
268 B
JSON
18 lines
268 B
JSON
{
|
|
// https://v3.nuxtjs.org/concepts/typescript
|
|
"extends": "./.nuxt/tsconfig.json",
|
|
"include": [
|
|
"env.d.ts",
|
|
".nuxt/nuxt.d.ts",
|
|
"**/*"
|
|
],
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"es2021",
|
|
"dom"
|
|
],
|
|
"types": [
|
|
"bun"
|
|
]
|
|
},
|
|
}
|