forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
29 lines (27 loc) · 706 Bytes
/
index.ts
File metadata and controls
29 lines (27 loc) · 706 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
import packageJSON from './package-json';
import prettierRC from './prettierRC';
import sandboxConfig from './sandbox';
import babelrc from './babelrc';
import nowConfig from './now';
import netlifyConfig from './netlify';
import angularCli from './angular-cli';
import angularJSON from './angular-json';
import tsconfig from './tsconfig';
import jsconfig from './jsconfig';
import babelTranspiler from './babel-transpiler';
import customCodeSandbox from './custom-codesandbox';
const configs = {
babelrc,
babelTranspiler,
packageJSON,
prettierRC,
sandboxConfig,
angularCli,
angularJSON,
tsconfig,
customCodeSandbox,
nowConfig,
netlifyConfig,
jsconfig,
};
export default configs;