* Adds QObject wrapper * disable source map in the dist since its of no use * rename to nodeobject * Adds qobject setProperty and auto conversion of napi to qvariant (mvp version) * fix * moved qobject methods to qobject from qwidget * added qobject test cases
15 lines
329 B
JSON
15 lines
329 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2015",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"sourceMap": false,
|
|
"outDir": "./dist",
|
|
"strict": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["src"]
|
|
}
|