mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-05 04:47:54 +00:00
21 lines
563 B
JSON
21 lines
563 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"declaration": true,
|
|
"incremental": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"outDir": "./lib",
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
// https://stackoverflow.com/questions/51716406/typescript-tsconfig-settings-for-node-js-10
|
|
// and 'dom' to tell tsc it's okay to use the URL object (which is in Node >= 7)
|
|
"target": "es2018",
|
|
"lib": ["es2018", "dom"]
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
]
|
|
}
|