mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-11 15:51:06 +00:00
20 lines
409 B
JSON
20 lines
409 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"allowJs": true,
|
||
|
"declaration": false,
|
||
|
"esModuleInterop": true,
|
||
|
"incremental": true,
|
||
|
"module": "commonjs",
|
||
|
"moduleResolution": "node",
|
||
|
"outDir": "./lib",
|
||
|
"resolveJsonModule": true,
|
||
|
"skipLibCheck": true,
|
||
|
"sourceMap": true,
|
||
|
"target": "es2017",
|
||
|
"lib": ["es2017", "dom"]
|
||
|
},
|
||
|
"include": [
|
||
|
"./src/**/*"
|
||
|
]
|
||
|
}
|