mirror of
https://github.com/vector-im/element-web.git
synced 2026-07-04 14:30:46 +00:00
7ad8f58a08
* Fix tsconfig paths * Tidy pnpm patches * Fix pnpm-link.ts for devEngines specification
22 lines
635 B
JSON
22 lines
635 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"jsx": "react",
|
|
"lib": ["es2024", "dom", "dom.iterable"],
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "bundler",
|
|
"module": "ESNext",
|
|
"allowImportingTsExtensions": true,
|
|
"strictNullChecks": false,
|
|
"noImplicitAny": false,
|
|
"types": ["node"]
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"../src/@types/matrix-js-sdk.d.ts",
|
|
"../node_modules/matrix-js-sdk/src/@types/*.d.ts",
|
|
"../node_modules/matrix-js-sdk/node_modules/@matrix-org/olm/index.d.ts"
|
|
]
|
|
}
|