mirror of
https://github.com/directus/directus.git
synced 2026-01-27 17:38:00 -05:00
* initial setup of numeric * completed first draft of numeric * attempting a factory function * getting closer to a factory but binding everything is proving difficult * fixed up numeric methods * separated out common props * tests passed * readme * fixed props import * fixed props again? * Bind props normally * Remove unused font option in storybook * Rename readonly->disabled, remove unused wrapper div * Remove unused import * Cleanup steplistener function * Split up numeric / slider * Fix stepper buttons * Allow clickable icons to have focus * Finish numeric interface * Naming tweaks Co-authored-by: rijkvanzanten <rijkvanzanten@me.com>
23 lines
508 B
JSON
23 lines
508 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"importHelpers": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"types": ["webpack-env", "jest"],
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.vue"],
|
|
"exclude": ["node_modules"]
|
|
}
|