* Fixing import for path after TypeScript was added * Added esModuleInterop: true, fixed breaking imports after change
24 lines
396 B
JSON
24 lines
396 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2017",
|
|
"lib": [
|
|
"es2017"
|
|
],
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"outDir": "dist/cjs",
|
|
"types": [
|
|
"node",
|
|
],
|
|
"allowSyntheticDefaultImports": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"declaration": true
|
|
},
|
|
"include": [
|
|
"src",
|
|
"entry-asar"
|
|
]
|
|
}
|