Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
mycard
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
syntax_j
mycard
Commits
562b6298
Commit
562b6298
authored
Apr 26, 2017
by
2breakegg
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
893b0bb6
472d80ed
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
10 deletions
+6
-10
.gitignore
.gitignore
+1
-0
.idea/vcs.xml
.idea/vcs.xml
+2
-2
main.js
main.js
+0
-6
main.ts
main.ts
+1
-1
tsconfig.json
tsconfig.json
+2
-1
No files found.
.gitignore
View file @
562b6298
...
@@ -32,3 +32,4 @@ messages.xlf
...
@@ -32,3 +32,4 @@ messages.xlf
messages.xlf.bak
messages.xlf.bak
locale/*.xlf.bak
locale/*.xlf.bak
/.vscode/
/.vscode/
/main.js
.idea/vcs.xml
View file @
562b6298
vs
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<project
version=
"4"
>
<component
name=
"VcsDirectoryMappings"
>
<component
name=
"VcsDirectoryMappings"
>
<mapping
directory=
"$PROJECT_DIR$"
vcs=
"Git"
/>
<mapping
directory=
"$PROJECT_DIR$"
vcs=
"Git"
/>
</component>
</component>
</project>
</project>
\ No newline at end of file
main.js
deleted
100644 → 0
View file @
893b0bb6
"
use strict
"
;
Object
.
defineProperty
(
exports
,
"
__esModule
"
,
{
value
:
true
});
const
platform_browser_dynamic_1
=
require
(
"
@angular/platform-browser-dynamic
"
);
const
app_module_1
=
require
(
"
./app/app.module
"
);
platform_browser_dynamic_1
.
platformBrowserDynamic
().
bootstrapModule
(
app_module_1
.
AppModule
);
//# sourceMappingURL=main.js.map
\ No newline at end of file
main.ts
View file @
562b6298
import
{
platformBrowserDynamic
}
from
'
@angular/platform-browser-dynamic
'
;
import
{
platformBrowserDynamic
}
from
'
@angular/platform-browser-dynamic
'
;
import
{
AppModule
}
from
'
./
app/app.module
'
;
import
{
AppModule
}
from
'
app/app.module
'
;
platformBrowserDynamic
().
bootstrapModule
(
AppModule
);
platformBrowserDynamic
().
bootstrapModule
(
AppModule
);
tsconfig.json
View file @
562b6298
...
@@ -13,6 +13,7 @@
...
@@ -13,6 +13,7 @@
"noImplicitAny"
:
false
,
"noImplicitAny"
:
false
,
"suppressImplicitAnyIndexErrors"
:
true
,
"suppressImplicitAnyIndexErrors"
:
true
,
"strictNullChecks"
:
true
,
"strictNullChecks"
:
true
,
"skipLibCheck"
:
true
"skipLibCheck"
:
true
,
"baseUrl"
:
"."
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment