forked from NativeScript/sample-Groceries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.abignore
58 lines (50 loc) · 1.08 KB
/
.abignore
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
# .abignore lets you configure which of your files and folders should be excluded from your application package during the build process.
# Each project created with AppBuilder 2.6 or later contains a default .abignore which lists a number of system files and folders that might affect the size of your app or might prevent build operations from completing successfully.
#
# For more information about .abignore and how to write exclude and include rules for your projects, see http://docs.telerik.com/platform/appbuilder/testing-your-app/abignore
# Windows files
**/Thumbs.db
# Mac OS files
**/.DS_Store
**/__MACOSX/**/*
# Visual Studio files
bin/**/*
obj/**/*
**/.vs/**/*
**/.vscode/**/*
**/*.obj
**/*.pdb
**/*.user
**/*.aps
**/*.pch
**/*.vspscc
**/*_i.c
**/*_p.c
**/*.ncb
**/*.suo
**/*.tlb
**/*.tlh
**/*.ilk
**/*.lib
**/*.sbr
# Source control files
.gitignore
.git/**/*
# AppBuilder files
.abignore
.*.abignore
.*.*.abignore
.ab/**/*
.app.json
.yo-rc.json
# TypeScript files
**/*.ts
**/*.map
# Other
**/*.bak
**/*.cache
**/*.log
# NativeScript files
platforms/**/*
node_modules/**/*
typings/**/*