mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-18 15:34:59 +01:00
26 lines
491 B
JSON
26 lines
491 B
JSON
{
|
|
"compilerOptions": {
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es2016",
|
|
"noImplicitAny": false,
|
|
"sourceMap": false,
|
|
"outDir": "./lib",
|
|
"rootDir": "./src",
|
|
"declaration": true,
|
|
"typeRoots": ["src/@types"],
|
|
"lib": [
|
|
"es2019",
|
|
"dom"
|
|
],
|
|
"types": ["jest", "node"],
|
|
"strict": true
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./tests/**/*.ts"
|
|
]
|
|
}
|