mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-19 16:04:58 +01:00
37d7559d86
Turns out the previous setting didn't work, and apparently this needs to be CommonJS.
19 lines
283 B
JSON
19 lines
283 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"target": "es2017",
|
|
"module": "commonjs",
|
|
"sourceMap": false,
|
|
"lib": [
|
|
"es2019",
|
|
]
|
|
},
|
|
"include": [
|
|
"./**/*.ts"
|
|
],
|
|
"ts-node": {
|
|
"transpileOnly": true
|
|
}
|
|
}
|