mirror of
https://github.com/nextcloud/spreed.git
synced 2025-07-21 05:46:02 +00:00

- 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>
18 lines
410 B
JSON
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": [],
|
|
}
|
|
}
|