Skip to content

Commit

Permalink
Adding package.json and required dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
moozzyk committed Sep 18, 2017
1 parent f670664 commit ba1309e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions SignalRChat/package.json
@@ -0,0 +1,17 @@
{
"name": "signalrchat",
"version": "1.0.0",
"description": "",
"main": "chat.js",
"dependencies": {},
"devDependencies": {
"@aspnet/signalr-client": "^1.0.0-alpha1-final",
"@types/jquery": "^3.2.12",
"jquery": "^3.2.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}

3 comments on commit ba1309e

@FakirRabih
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm encountering the error bellow please anyone got an idea why

Error TS18003 Build:No inputs were found in config file 'tsconfig.json'. Specified 'include' paths were '["**/*"]' and 'exclude' paths were '["node_modules","bower_components","jspm_packages"]'.

@moozzyk
Copy link
Owner Author

@moozzyk moozzyk commented on ba1309e Oct 6, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What version of tsc you are running (tsc --version)? I used 2.5.3 and did not see this issue. If you are using the latest and you still see this issue you may try adding just empty chat.ts file or move to the next commit where the *.ts file is added.

@moozzyk
Copy link
Owner Author

@moozzyk moozzyk commented on ba1309e Oct 6, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually an empty chat.ts file already exist at this point and should be picked up by tsc.

Please sign in to comment.