-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathtsconfig.json
34 lines (34 loc) · 1005 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
27
28
29
30
31
32
33
34
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"noImplicitAny": false,
"sourceMap": false,
"outDir": "dist",
"rootDir": "src"
},
"filesGlob": "**/*.ts",
"exclude": [
"node_modules"
],
"files": [
"src/definitions/symbol.d.ts",
"src/audio-nodes/effects/Delay.ts",
"src/audio-nodes/effects/Distortion.ts",
"src/audio-nodes/effects/Flanger.ts",
"src/audio-nodes/effects/Input.ts",
"src/audio-nodes/effects/Output.ts",
"src/audio-nodes/effects/Reverb.ts",
"src/audio-nodes/effects/Tremolo.ts",
"src/audio-nodes/effects/Volume.ts",
"src/audio-nodes/MultiAudioNode.ts",
"src/audio-nodes/SingleAudioNode.ts",
"src/audio-nodes/SingleAudioNodeWrapper.ts",
"src/helpers/hasAudioContext.ts",
"src/helpers/hasGetUserMedia.ts",
"src/index.ts"
],
"atom": {
"rewriteTsconfig": true
}
}