mirror of
https://github.com/vector-im/element-web.git
synced 2026-04-29 09:21:36 +02:00
* Update dependency typescript to v6 * Switch to unplugin-vts Workaround for https://github.com/qmhc/unplugin-dts/issues/467 And tweak tsconfigs * tweak tsconfig * Make tsc happy --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
20 lines
516 B
JSON
20 lines
516 B
JSON
{
|
|
"$schema": "http://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"target": "esnext",
|
|
"lib": ["dom", "es2022", "esnext"],
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"declaration": true,
|
|
"module": "es2022",
|
|
"moduleResolution": "bundler",
|
|
"types": [],
|
|
"outDir": "lib",
|
|
"jsx": "react-jsx",
|
|
"declarationMap": true,
|
|
"allowImportingTsExtensions": true
|
|
},
|
|
"include": ["src"]
|
|
}
|