Skip to content

Commit 2f8f2ba

Browse files
Semih KEŞKEKSemih KEŞKEK
authored andcommitted
Update Configuration
1 parent 5175f63 commit 2f8f2ba

File tree

6 files changed

+45
-2
lines changed

6 files changed

+45
-2
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
node_modules
1+
node_modules
2+
typings
3+
*.js
4+
*.js.map

.vscode/settings.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// Place your settings in this file to overwrite default and user settings.
2+
{
3+
"files.exclude":{
4+
"**/*.js" : true,
5+
"**/*.js.map": true,
6+
7+
"typings": true
8+
}
9+
}

.vscode/tasks.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "0.1.0",
5+
"command": "tsc",
6+
"isShellCommand": true,
7+
"args": ["-w", "-p", "."],
8+
"showOutput": "silent",
9+
"isWatching": true,
10+
"problemMatcher": "$tsc-watch"
11+
}

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"description": "Live SASS Compiler",
55
"main": "app.js",
66
"scripts": {
7-
"test": "pm2 start app.js"
7+
"test": "node app.js",
8+
"testpm": "pm2 start app.js"
89
},
910
"repository": {
1011
"type": "git",

tsconfig.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es5",
4+
"sourceMap": true,
5+
"module": "commonjs"
6+
},
7+
"exclude": [
8+
"node_modules",
9+
"typings"
10+
],
11+
"compileOnSave": true
12+
}

typings.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"name": "sass-compiler",
3+
"dependencies": {},
4+
"globalDependencies": {
5+
"node": "registry:env/node#6.0.0+20160622202520"
6+
}
7+
}

0 commit comments

Comments
 (0)