Files
ThreadNet-Web/apps/web/playwright/tsconfig.json
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
635 B
JSON
Raw Normal View History

2023-11-21 17:33:32 +00:00
{
"compilerOptions": {
2024-08-01 17:14:28 +01:00
"target": "es2022",
2023-11-21 17:33:32 +00:00
"jsx": "react",
2026-04-22 12:28:54 +00:00
"lib": ["es2024", "dom", "dom.iterable"],
2023-11-21 17:33:32 +00:00
"resolveJsonModule": true,
"esModuleInterop": true,
2026-04-22 12:28:54 +00:00
"moduleResolution": "bundler",
"module": "ESNext",
2026-03-24 15:03:52 +00:00
"allowImportingTsExtensions": true,
2026-04-22 12:28:54 +00:00
"strictNullChecks": false,
"noImplicitAny": false,
2026-03-24 15:03:52 +00:00
"types": ["node"]
2023-11-21 17:33:32 +00:00
},
"include": [
"**/*.ts",
"../src/@types/matrix-js-sdk.d.ts",
2026-06-05 08:42:26 +01:00
"../node_modules/matrix-js-sdk/src/@types/*.d.ts",
"../node_modules/matrix-js-sdk/node_modules/@matrix-org/olm/index.d.ts"
2024-02-22 10:11:25 +00:00
]
2023-11-21 17:33:32 +00:00
}