-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgs-json.sublime-project
103 lines (103 loc) · 1.39 KB
/
gs-json.sublime-project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"build_systems":
[
{
"file_regex": "(.*\\.ts?)\\s\\(([0-9]+)\\,([0-9]+)\\)\\:\\s(...*?)$",
"name": "Compile TypeScript",
"osx":
{
"path": "/usr/local/bin:/opt/local/bin"
},
"selector": "source.ts",
"windows":
{
"cmd":
[
"tsc.cmd",
"--declaration",
"--target",
"ES6",
"--module",
"ES6",
"--sourceMap",
"--outDir",
"$project_path/dist",
"--listFiles",
"--listEmittedFiles",
"$file"
]
}
},
{
"name": "Run",
"osx":
{
"cmd":
[
"/usr/local/bin/node",
"$file"
]
},
"selector": "source.js",
"windows":
{
"cmd":
[
"node.exe",
"$file"
]
}
}
],
"folders":
[
{
"name": "TS Source Code",
"path": "src\\typescript"
},
{
"name": "JS Dist Code",
"path": "dist"
},
{
"name": "JS Dist Code 2015",
"path": "dist2015"
},
{
"name": "TS Documentation",
"path": "docs\\typescript"
},
{
"folder_exclude_patterns":
[
"backup"
],
"name": "GS Models",
"path": "src\\assets"
},
{
"name": "ROOT",
"path": "."
}
],
"settings":
{
"ensure_newline_at_eof_on_save": true,
"font_size": 17,
"ignored_packages":
[
"Vintage"
],
"rulers":
[
4,
8,
110,
115,
120
],
"tab_size": 4,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true
}
}