* feat(ui): add `input group` base component * feat(history): add history viewer and rewind * test: update selector snapshot * test: add PW base page * style: apply TS style fixes * chore(history): request history wiki * chore(history): remove unwanted symbol * chore: fix type * style: apply TS style fixes
29 lines
711 B
JSON
29 lines
711 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "preserve",
|
|
"strict": true,
|
|
"isolatedModules": true,
|
|
"target": "ESNext",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@/*": [
|
|
"./resources/js/*"
|
|
]
|
|
},
|
|
"types": [
|
|
"./resources/types/global",
|
|
"./resources/types/vue-shims"
|
|
]
|
|
},
|
|
"include": [
|
|
"resources/js/**/*.ts",
|
|
"resources/js/**/*.vue",
|
|
"resources/types/**/*.d.ts"
|
|
]
|
|
} |