mirror of
https://github.com/vector-im/element-web.git
synced 2026-03-29 10:11:05 +02:00
26 lines
849 B
JSON
26 lines
849 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowImportingTsExtensions": true,
|
|
"experimentalDecorators": false,
|
|
"emitDecoratorMetadata": false,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"useDefineForClassFields": true,
|
|
"module": "es2022",
|
|
"moduleResolution": "bundler",
|
|
"target": "es2022",
|
|
"noUnusedLocals": true,
|
|
"sourceMap": false,
|
|
"declaration": true,
|
|
"jsx": "react",
|
|
"lib": ["es2022", "es2024.promise", "dom", "dom.iterable"],
|
|
"types": ["storybook-addon-vis/matcher"],
|
|
"strict": true,
|
|
"paths": {
|
|
"@test-utils": ["./src/test/utils/index"]
|
|
}
|
|
},
|
|
"include": ["./src/**/*.ts", "./src/**/*.tsx", ".storybook/*.ts", ".storybook/*.tsx"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|