knowyt/client/tsconfig.json

18 lines
293 B
JSON
Raw Normal View History

2022-07-31 20:56:53 +00:00
// https://v3.nuxtjs.org/concepts/typescript
{
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,
"plugins": [
{
"name": "typescript-strict-plugin"
}
],
2022-07-31 20:56:53 +00:00
"types": [
"@pinia/nuxt"
]
},
}