mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
592 B
28 lines
592 B
2 years ago
|
{
|
||
2 years ago
|
"extends": "./.nuxt/tsconfig.json",
|
||
|
"compilerOptions": {
|
||
|
"strict": true,
|
||
2 years ago
|
"esModuleInterop": true,
|
||
|
"incremental": false,
|
||
|
"skipLibCheck": true,
|
||
|
"moduleResolution": "node",
|
||
|
"resolveJsonModule": true,
|
||
|
"noUnusedLocals": false,
|
||
|
"strictNullChecks": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
2 years ago
|
"types": [
|
||
|
"@intlify/vite-plugin-vue-i18n/client",
|
||
|
"vue-i18n",
|
||
|
"unplugin-icons/types/vue",
|
||
2 years ago
|
"nuxt-windicss",
|
||
2 years ago
|
"vite/client",
|
||
|
"@nuxt/image-edge"
|
||
2 years ago
|
]
|
||
2 years ago
|
},
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
2 years ago
|
"dist",
|
||
|
".output"
|
||
2 years ago
|
]
|
||
2 years ago
|
}
|