mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 13:17:08 +00:00
26 lines
755 B
JSON
26 lines
755 B
JSON
{
|
|
"include": ["web"],
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2019",
|
|
"moduleResolution": "node",
|
|
"jsx": "preserve",
|
|
"jsxFactory": "h",
|
|
"baseUrl": "./",
|
|
/* paths - If you configure Snowpack import aliases, add them here. */
|
|
"paths": {},
|
|
/* noEmit - Snowpack builds (emits) files, not tsc. */
|
|
"noEmit": true,
|
|
/* Additional Options */
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"importsNotUsedAsValues": "error",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"esModuleInterop": true
|
|
}
|
|
}
|
|
|