-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
55 lines (55 loc) · 1.33 KB
/
tsconfig.json
File metadata and controls
55 lines (55 loc) · 1.33 KB
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
{
"version": "1.6.2",
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"sourceMap": true,
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"listFiles": false,
"noLib": false
},
"exclude": [
"node_modules"
],
"filesGlob": [
"./src/**/*.ts",
"!./src/**/*.d.ts",
"./typings/**/*.ts",
"!./node_modules/**/*.ts"
],
"files": [
"./src/components/app/appcomp.ts",
"./src/components/input/inputcomp.ts",
"./src/components/output/outputcomp.ts",
"./src/components/status/statuscomp.ts",
"./src/components/tuner/tunercomp.ts",
"./src/lib/audio.ts",
"./src/lib/complex.ts",
"./src/lib/constants.ts",
"./src/lib/costas.ts",
"./src/lib/digi.ts",
"./src/lib/fft.ts",
"./src/lib/filter.ts",
"./src/lib/mode/fsk.ts",
"./src/lib/mode/mode.ts",
"./src/lib/mode/navtex.ts",
"./src/lib/mode/packet.ts",
"./src/lib/mode/psk.ts",
"./src/lib/mode/rtty.ts",
"./src/lib/nco.ts",
"./src/lib/resample.ts",
"./src/lib/tuner.ts",
"./src/lib/watch.ts",
"./src/lib/window.ts",
"./src/services/digiservice.ts",
"./src/vendor.ts",
"./typings/MediaStream.d.ts",
"./typings/webaudio-missing.d.ts"
],
"atom": {
"rewriteTsconfig": true
}
}