-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
32 lines (32 loc) · 856 Bytes
/
tsconfig.json
File metadata and controls
32 lines (32 loc) · 856 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
30
31
32
{
"compilerOptions": {
"module": "commonjs",
"outDir": "built/",
"target": "es5"
},
"filesGlob": [
"src/**/*.ts"
],
"ArcticTypescript": {
"post_processing_commands": [
"npm test"
]
},
"files": [
"src/dStarLite/dStarKey.ts",
"src/dStarLite/dStarLite.ts",
"src/dStarLite/dStarNode.ts",
"src/edgeList/edgeListGraph.ts",
"src/edgeList/edgeListGraphBits.ts",
"src/interfaces/graphBits.ts",
"src/interfaces/graphInterface.ts",
"src/interfaces/key.ts",
"src/interfaces/priorityQueue.ts",
"src/lib/chai/chai.d.ts",
"src/lib/mocha/mocha.d.ts",
"src/lib/tsd.d.ts",
"src/main.ts",
"src/test/edgeListGraph.spec.ts",
"src/test/edgeListGraphBits.spec.ts"
]
}