forked from toolness/p5.js-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
36 lines (36 loc) · 828 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
35
36
{
"compilerOptions": {
"target": "es5",
"sourceMap": true,
"jsx": "react"
},
"files": [
"typings/custom.d.ts",
"typings/codemirror.d.ts",
"typings/react.d.ts",
"typings/react-dom.d.ts",
"typings/react-addons-pure-render-mixin.d.ts",
"typings/esprima/esprima.d.ts",
"typings/chai/chai.d.ts",
"test/main.tsx",
"test/test-loop-inserter.tsx",
"test/test-implicit-sketch.tsx",
"lib/pure-component.tsx",
"lib/defaults.ts",
"lib/autosaver.ts",
"lib/p5-widget.ts",
"lib/preview-frame.ts",
"lib/preview-frame-interface.ts",
"lib/falafel.ts",
"lib/implicit-sketch.ts",
"lib/loop-inserter.ts",
"lib/main.tsx",
"lib/app.tsx",
"lib/toolbar.tsx",
"lib/editor.tsx",
"lib/preview.tsx"
],
"exclude": [
"node_modules"
]
}