This commit is contained in:
Kamil Szostak 2017-07-10 11:26:56 -07:00
Родитель 4b100dab0c
Коммит 3c84c342de
5 изменённых файлов: 35 добавлений и 3 удалений

5
.gitignore поставляемый
Просмотреть файл

@ -164,4 +164,7 @@ JavaScript/.vs
# Temp directories
bundle/
node_modules/
node_modules/
# Grunt
.tscache

4
.vscode/settings.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,4 @@
{
// Use Typescript from node_modules instead of builtin to VSCode
"typescript.tsdk": "./node_modules/typescript/lib"
}

19
.vscode/tasks.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,19 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "grunt",
"isShellCommand": true,
"tasks": [
{
"taskName": "default",
"args": [],
"isBuildCommand": true,
"problemMatcher": [
"$lessCompile",
"$tsc",
"$jshint"
]
}
]
}

Просмотреть файл

@ -105,6 +105,12 @@ See:
* Don't forget to build the solution after changing TypeScript files
* Refresh Tests.html in the browser to re-run tests
* New build process
* npm install -g grunt-cli
* npm install
* Ctrl+Shift+B to build in VS Code
## Contributing
We strongly welcome and encourage contributions to this project. Please read the [contributor's guide][ContribGuide] located in the ApplicationInsights-Home repository. If making a large change we request that you open an [issue][GitHubIssue] first. We follow the [Git Flow][GitFlow] approach to branching.

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "applicationinsights-js",
"version": "1.0.8",
"version": "1.1.0",
"description": "Microsoft Application Insights JavaScript SDK",
"main": "JavaScript/JavaScriptSDK.Module/AppInsightsModule.js",
"keywords": [
@ -24,7 +24,7 @@
},
"homepage": "https://github.com/Microsoft/ApplicationInsights-JS#readme",
"devDependencies": {
"grunt": "1.0.1",
"grunt": "^1.0.1",
"grunt-contrib-uglify": "^2.3.0",
"grunt-ts": "^6.0.0-beta.15",
"typescript": "1.8.10"