-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtsconfig.json
28 lines (28 loc) · 920 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
{
"compilerOptions": {
"module": "system",
"target": "ES2015",
"lib": [ "ES2017", "DOM" ],
"sourceMap": false,
"outFile": "assets/js/graphicalFilterEditor.js",
"emitBOM": true,
"strict": true,
"removeComments": true
},
"files": [
"lib/lib.ts",
"scripts/main.ts",
"scripts/ui/pointerHandler.ts",
"scripts/graphicalFilterEditor/graphicalFilterEditorStrings.ts",
"scripts/graphicalFilterEditor/graphicalFilterEditor.ts",
"scripts/graphicalFilterEditor/graphicalFilterEditorRenderer.ts",
"scripts/graphicalFilterEditor/graphicalFilterEditorCanvasRenderer.ts",
"scripts/graphicalFilterEditor/graphicalFilterEditorSVGRenderer.ts",
"scripts/graphicalFilterEditor/graphicalFilterEditorControl.ts",
"scripts/gl/program.ts",
"scripts/analyzer/analyzer.ts",
"scripts/analyzer/plainAnalyzer.ts",
"scripts/analyzer/soundParticlesAnalyzer.ts",
"scripts/analyzer/waveletAnalyzer.ts"
]
}