Closed defyjoy closed 7 years ago
I believe I have fixed those issues .
The tsconfig.json needed some modifications for those and updated the angular packages to latest .
Here's my tsconfig.json -
{
"compilerOptions": {
"module": "es2015",
"moduleResolution": "node",
"target": "es5",
"sourceMap": true,
"noImplicitAny": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipDefaultLibCheck": true,
"strictNullChecks": false,
"skipLibCheck": true, // Workaround for https://github.com/angular/angular/issues/17863. Remove this if you upgrade to a fixed version of Angular.
"strict": true,
"lib": [
"es6",
"dom"
],
"typeRoots": [
"node_modules/types"
],
"types": [
"webpack-env",
"jquery"
]
},
"exclude": [
"bin",
"node_modules"
],
"atom": {
"rewriteTsconfig": false
}
}
I am trying to utilize this pre build template into my existing solution . However below are the errors I am getting with asp-net-core SPATemplates .
And my package.json is -