Files
element-call/tsconfig.json

52 lines
1.8 KiB
JSON
Raw Normal View History

2022-05-06 11:32:09 +01:00
{
"compilerOptions": {
"target": "es2022",
"module": "es2022",
"jsx": "react-jsx",
"lib": ["es2022", "dom", "dom.iterable"],
// From Matrix-JS-SDK
"strict": true,
"noEmit": true,
"noEmitOnError": true,
"experimentalDecorators": false,
"esModuleInterop": true,
"noUnusedLocals": true,
2024-02-15 23:22:15 -05:00
"moduleResolution": "bundler",
"declaration": true,
"resolveJsonModule": true,
// Workaround for https://github.com/microsoft/TypeScript/issues/55132
"useDefineForClassFields": false,
"allowImportingTsExtensions": true,
2024-02-15 23:22:15 -05:00
"paths": {
// These imports within @livekit/components-core and
// @livekit/components-react are broken under the "bundler" module
// resolution mode, so we need to resolve them manually
"livekit-client/dist/src/room/Room": [
"./node_modules/livekit-client/dist/src/room/Room.d.ts"
],
"livekit-client/dist/src/room/track/TrackPublication": [
"./node_modules/livekit-client/dist/src/room/track/TrackPublication.d.ts"
],
2024-02-15 23:22:15 -05:00
"livekit-client/dist/src/room/participant/Participant": [
"./node_modules/livekit-client/dist/src/room/participant/Participant.d.ts"
2024-03-20 13:04:01 +00:00
],
"livekit-client/dist/src/proto/livekit_models_pb": [
2024-03-21 08:57:17 +00:00
"./node_modules/@livekit/protocol/src/gen/livekit_models_pb.d.ts"
2024-02-15 23:22:15 -05:00
]
},
// TODO: Enable the following options later.
// "forceConsistentCasingInFileNames": true,
// "noFallthroughCasesInSwitch": true,
// "noImplicitOverride": true,
// "noImplicitReturns": true,
// "noPropertyAccessFromIndexSignature": true,
// "noUncheckedIndexedAccess": true,
// "noUnusedParameters": true,
2024-02-09 11:04:01 -05:00
"plugins": [{ "name": "typescript-eslint-language-service" }]
2022-05-06 11:32:09 +01:00
},
2025-03-27 14:47:01 -04:00
"include": ["./src/**/*.ts", "./src/**/*.tsx", "./playwright/**/*.ts"]
2022-05-06 11:32:09 +01:00
}