mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
24 lines
441 B
JSON
24 lines
441 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"experimentalDecorators": true,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"module": "commonjs",
|
||
|
"moduleResolution": "node",
|
||
|
"target": "es2016",
|
||
|
"noImplicitAny": false,
|
||
|
"sourceMap": false,
|
||
|
"outDir": "./lib",
|
||
|
"declaration": true,
|
||
|
"lib": [
|
||
|
"es2019",
|
||
|
"dom",
|
||
|
"dom.iterable"
|
||
|
],
|
||
|
},
|
||
|
"include": [
|
||
|
"./src/**/*.ts",
|
||
|
"start.ts"
|
||
|
]
|
||
|
}
|