-
Notifications
You must be signed in to change notification settings - Fork 638
/
tsconfig.json
26 lines (26 loc) · 940 Bytes
/
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
{
"compilerOptions": {
"forceConsistentCasingInFileNames": false,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"downlevelIteration": true,
"skipLibCheck": true,
"module": "commonjs",
// Check JS files too
"allowJs": true,
"checkJs": false,
// Used for temp builds
"outDir": "build",
"paths": {
"mina": ["./node_modules/snapsvg/src/mina"],
"octicons": ["./node_modules/@primer/octicons"],
"ungit-address-parser": ["./source/address-parser"],
"ungit-components": ["./public/source/components"],
"ungit-main": ["./public/source/main"],
"ungit-navigation": ["./public/source/navigation"],
"ungit-program-events": ["./public/source/program-events"],
"ungit-storage": ["./public/source/storage"]
}
},
"exclude": ["node_modules", "build", "coverage", "public/js", "**/*.min.js", "**/*.bundle.js", "clicktests", "test"]
}