mirror of
https://github.com/directus/directus.git
synced 2026-01-14 23:37:55 -05:00
* Refactor v-table to script setup, add header append slot * Rework table components + fix volar config * Convert table-row to setup sfc * Remove vetur config, now that volar works * Remove unused component * Remove field option from sidebar detail * Add reusable v-field-list component * Disable already selected fields * Add col header ctx menus on tabular * Tweak styling, add hover to resize handle * Add column reordering * Add support for nested relational fields * Render header for relational interfaces better * Ellipsis overflow in formatted-value
25 lines
568 B
JSON
25 lines
568 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"importHelpers": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"types": ["vite/client", "jest"],
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"preact/*": ["stub/empty.d.ts"]
|
|
},
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.vue"],
|
|
"exclude": ["node_modules"]
|
|
}
|