Last active
October 31, 2018 16:34
-
-
Save picheli20/28a971bc2de7a0ad6b1c8d15c66fa0a0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>UiJar</title> | |
<base href="/"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="icon" type="image/x-icon" href="favicon.ico"> | |
</head> | |
<body> | |
<ui-jar-app></ui-jar-app> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; | |
import { UIJarModule } from 'ui-jar'; | |
platformBrowserDynamic().bootstrapModule(UIJarModule); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url('../node_modules/ui-jar/dist/src/styles/default.css'); | |
/* Dont forget our components styles */ | |
@import '../node_modules/foo/bar/src/main.scss'; | |
@include init($color-pallete); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"extends": "../tsconfig.json", | |
"compilerOptions": { | |
"outDir": "../out-tsc/app", | |
"types": [] | |
}, | |
"exclude": [ | |
"test.ts", | |
"**/*.spec.ts", | |
"../src/**/*.spec.ts", | |
"../projects/**/*.spec.ts", | |
], | |
"include": [ | |
"**/*.ts", | |
"../projects/**/*.ts" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment