mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-17 21:12:20 +01:00
- this makes any non-typed object (and array) fields be possibly undefined Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
18 lines
447 B
JSON
18 lines
447 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,
|
|
"noUncheckedIndexedAccess": false,
|
|
"strictNullChecks": true,
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"types": [],
|
|
},
|
|
"vueCompilerOptions": {
|
|
"htmlAttributes": [],
|
|
}
|
|
}
|