forked from electron-userland/electron-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
executable file
·100 lines (100 loc) · 2.87 KB
/
tsconfig.json
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
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"noImplicitAny": true,
"outDir": "out",
"newLine": "LF",
"noResolve": true,
"noEmitOnError": true,
"inlineSources": true,
"sourceMap": true,
"noImplicitReturns": true,
"strictNullChecks": true,
"noEmitHelpers": true,
"noFallthroughCasesInSwitch": true
},
"declaration": {
"electron-builder": "out/electron-builder.d.ts",
"": "test/out/electron-builder.d.ts"
},
"docs": "docs/Options.md",
"filesGlob": [
"src/**/*.ts",
"lib/*.d.ts",
"typings/**/*.d.ts",
"!typings/browser/**/*.d.ts",
"!typings/browser.d.ts",
"!typings/main.d.ts",
"node_modules/fs-extra-p/index.d.ts",
"node_modules/7zip-bin/index.d.ts",
"node_modules/fs-extra-p/bluebird.d.ts",
"node_modules/electron-osx-sign-tf/index.d.ts",
"node_modules/@types/**/*.d.ts",
"!node_modules/@types/node/node-*.d.ts"
],
"files": [
"typings/ansi-escapes.d.ts",
"typings/appdmg.d.ts",
"typings/asar.d.ts",
"typings/chalk.d.ts",
"typings/deep-assign.d.ts",
"typings/electron-packager.d.ts",
"typings/electron-winstaller-fixed.d.ts",
"typings/gh-api.d.ts",
"typings/hosted-git-info.d.ts",
"typings/lib.es2016.array.include.d.ts",
"typings/minimatch.d.ts",
"typings/path-sort.d.ts",
"typings/pretty-ms.d.ts",
"typings/progress-stream.d.ts",
"typings/read-package-json.d.ts",
"typings/sanitize-filename.d.ts",
"typings/signcode.d.ts",
"typings/updateNotifier.d.ts",
"typings/uuid-1345.d.ts",
"typings/yargs.d.ts",
"node_modules/fs-extra-p/index.d.ts",
"node_modules/7zip-bin/index.d.ts",
"node_modules/fs-extra-p/bluebird.d.ts",
"node_modules/electron-osx-sign-tf/index.d.ts",
"node_modules/@types/debug/index.d.ts",
"node_modules/@types/mime/index.d.ts",
"node_modules/@types/node/index.d.ts",
"node_modules/@types/progress/index.d.ts",
"node_modules/@types/semver/index.d.ts",
"node_modules/@types/source-map-support/index.d.ts",
"src/appInfo.ts",
"src/asarUtil.ts",
"src/build-cli.ts",
"src/builder.ts",
"src/cleanup.ts",
"src/cliOptions.ts",
"src/codeSign.ts",
"src/errorMessages.ts",
"src/gitHubPublisher.ts",
"src/gitHubRequest.ts",
"src/index.ts",
"src/install-app-deps.ts",
"src/linuxPackager.ts",
"src/macPackager.ts",
"src/metadata.ts",
"src/packager.ts",
"src/platformPackager.ts",
"src/repositoryInfo.ts",
"src/targets/archive.ts",
"src/targets/dmg.ts",
"src/targets/fpm.ts",
"src/targets/nsis.ts",
"src/targets/squirrelWindows.ts",
"src/targets/targetFactory.ts",
"src/util/awaiter.ts",
"src/util/binDownload.ts",
"src/util/filter.ts",
"src/util/httpRequest.ts",
"src/util/log.ts",
"src/util/promise.ts",
"src/util/util.ts",
"src/winPackager.ts"
]
}