initial commit of the new UI based on Angular

At this point it is still the example Angular application.
This commit is contained in:
2019-10-08 18:18:24 +02:00
parent c128bdd532
commit 65b37e9c67
33 changed files with 14453 additions and 0 deletions

26
pdb-js/tsconfig.json Normal file
View File

@@ -0,0 +1,26 @@
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"module": "esnext",
"moduleResolution": "node",
"importHelpers": true,
"target": "es2015",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2018",
"dom"
]
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
}
}