Skip to content
Snippets Groups Projects
Verified Commit c5b340ac authored by Alex ORLUC's avatar Alex ORLUC
Browse files

move angular boot in src/core

parent 810ba3d8
No related branches found
No related tags found
No related merge requests found
File moved
{ {
"extends": "../tsconfig.json", "extends": "./tsconfig.json",
"compilerOptions": { "compilerOptions": {
"outDir": "../out-tsc/spec", "outDir": "../out-tsc/spec",
"types": [ "types": [
......
File moved
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { enableProdMode } from '@angular/core';
import { AppModule } from './app/app.module';
enableProdMode();
platformBrowserDynamic().bootstrapModule(AppModule);
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/app",
"baseUrl": "../../apps/maarch_entreprise/",
"module": "es2015",
"types": []
},
"exclude": [
"**/*.spec.ts"
]
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment