page - ng set defaults.styleext scss angular 6
Cli 6 angular, prueba ng no funciona (3)
Estaba teniendo este problema, pero se debió a que se agregaron polyfills.ts a tsconfig.spec.json , Polyfills estaba importando core-js / es7 / reflect y también estaba haciendo lo mismo en src / test.ts Eliminar la importación de src / test.ts solucionó mi problema
Acabo de actualizar mi proyecto angular a angular 6.
ng build y ng serve funcionan, pero cuando ejecuto mis pruebas con el comando:
ng test
Me sale la salida:
Schema validation failed with the following errors:
Data path "" should have required property ''tsConfig''.
tsconfig.json:
{
"compilerOptions": {
"baseUrl": "",
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"es2016",
"dom"
],
"mapRoot": "./",
"module": "es2015",
"moduleResolution": "node",
"outDir": "../dist/out-tsc",
"sourceMap": true,
"target": "es5",
"typeRoots": [
"../node_modules/@types"
]
}
}
Qué estoy haciendo mal ?
Lo resolví. De alguna manera, cuando actualicé el proyecto a Angular 6, tsConfig
clave tsConfig
bajo prueba -> opciones en angular.json
.
para mi
en archivo: angular.json
en la ruta del nodo json: proyectos -> {{yourProjectName}} -> architect-> test-> options
agregar nodo: "tsConfig": "src / tsconfig.json"