ucbuilder
Version:
For Developing Applications with multiple form/usercontrols etc.. In Single BrowserWindow...
32 lines • 696 B
JSON
{
"exclude": [
"node_modules"
],
"include": [
".",
"./package.json",
],
"compileOnSave": true,
"compilerOptions": {
"target": "es2016",
"module": "CommonJS",
"moduleResolution": "Node",
"resolveJsonModule": true,
//"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false,
// "suppressImplicitAnyIndexErrors": true,
"esModuleInterop": true,
"skipLibCheck": true,
"typeRoots": [
"./node_modules/@types"
],
"baseUrl": ".",
"outDir": "out",
"paths": {
"ucbuilder/*": [ "./*" ]
}
}
}