mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-31 05:29:58 +01:00
26 lines
466 B
JSON
26 lines
466 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"experimentalDecorators": true,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"esModuleInterop": true,
|
||
|
"module": "commonjs",
|
||
|
"moduleResolution": "node",
|
||
|
"target": "es2016",
|
||
|
"noImplicitAny": false,
|
||
|
"sourceMap": false,
|
||
|
"outDir": "./lib",
|
||
|
"declaration": true,
|
||
|
"types": [
|
||
|
"node"
|
||
|
],
|
||
|
"lib": [
|
||
|
"es2019",
|
||
|
"dom"
|
||
|
]
|
||
|
},
|
||
|
"include": [
|
||
|
"./src/**/*.ts"
|
||
|
]
|
||
|
}
|