Files
nextcloud-spreed/tsconfig.json
Grigorii K. Shartsev 02cc3a2a92 chore(vue3): migrate tsconfig to Vue 3
- allows props to match native html attributes, like NcHeaderButton 'aria-label'

Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
2025-06-25 17:52:35 +02:00

18 lines
410 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.json",
"include": ["src/**/*.ts", "src/**/*.vue", "src/env.d.ts"],
"exclude": ["node_modules", "vendor"],
"compilerOptions": {
"outDir": "./js",
"allowJs": true,
"checkJs": false,
"allowImportingTsExtensions": true,
"strictNullChecks": true,
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"types": [],
},
"vueCompilerOptions": {
"htmlAttributes": [],
}
}