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
33 lines (29 loc) · 800 Bytes
/
index.ts
File metadata and controls
33 lines (29 loc) · 800 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
30
31
32
33
import { ConfigurationFile } from '../types';
const config: ConfigurationFile = {
title: '.angular-cli.json',
type: 'angular-cli',
description:
'The configuration used for angular-cli, the cli to run angular projects.',
moreInfoUrl: 'https://github.com/angular/angular-cli/wiki/angular-cli',
getDefaultCode: () =>
JSON.stringify(
{
apps: [
{
root: 'src',
outDir: 'dist',
index: 'index.html',
main: 'main.ts',
polyfills: 'polyfills.ts',
styles: [],
scripts: [],
},
],
},
null,
2
),
schema:
'https://raw.githubusercontent.com/angular/angular-cli/master/packages/@angular/cli/lib/config/schema.json',
};
export default config;