2022-07-31 20:56:53 +00:00
|
|
|
// https://v3.nuxtjs.org/concepts/typescript
|
2022-07-24 18:23:52 +00:00
|
|
|
{
|
2022-07-31 20:56:53 +00:00
|
|
|
"include": [
|
|
|
|
"src/**/*"
|
|
|
|
],
|
2022-07-29 13:00:29 +00:00
|
|
|
"extends": "./.nuxt/tsconfig.json",
|
2022-07-31 20:56:53 +00:00
|
|
|
"compilerOptions": {
|
2022-09-01 17:21:13 +00:00
|
|
|
"strict": true,
|
2022-09-01 17:17:27 +00:00
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "typescript-strict-plugin"
|
|
|
|
}
|
|
|
|
],
|
2022-07-31 20:56:53 +00:00
|
|
|
"types": [
|
|
|
|
"@pinia/nuxt"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
}
|