-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.brackets.json
More file actions
29 lines (29 loc) · 737 Bytes
/
.brackets.json
File metadata and controls
29 lines (29 loc) · 737 Bytes
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
{
"spaceUnits": 4,
"typescript": {
"target": "ES5",
"module": "AMD",
"noImplicitAny": true,
"projects": {
"main": {
"sources" : [
"src/declarations/**/*.ts",
"src/main/**/*.ts"
]
},
"worker": {
"sources" : [
"src/declarations/**/*.ts",
"src/ts-worker/**/*.ts"
]
},
"test": {
"sources": [
"src/declarations/**/*.ts",
"src/test-declarations/**/*.ts",
"src/test/**/*.ts"
]
}
}
}
}