forked from Polymer/polymer-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
67 lines (67 loc) · 1.9 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"moduleResolution": "node",
"isolatedModules": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declaration": false,
"noImplicitAny": false,
"removeComments": false,
"noLib": true,
"preserveConstEnums": true,
"suppressImplicitAnyIndexErrors": true,
"outDir": "lib"
},
"filesGlob": [
"src/**/*.ts",
"!node_modules/**",
"custom_typings/*.d.ts",
"typings/index.d.ts",
"node_modules/typescript/lib/lib.core.es6.d.ts"
],
"files": [
"src/args.ts",
"src/build/build.ts",
"src/build/optimize-streams.ts",
"src/build/prefetch.ts",
"src/build/streams.ts",
"src/build/sw-precache.ts",
"src/commands/build.ts",
"src/commands/command.ts",
"src/commands/help.ts",
"src/commands/init.ts",
"src/commands/lint.ts",
"src/commands/serve.ts",
"src/commands/test.ts",
"src/environment/environment.ts",
"src/environments/environments.ts",
"src/environments/reyserve.ts",
"src/github/github.ts",
"src/init/application/application.ts",
"src/init/element/element.ts",
"src/init/github.ts",
"src/polymer-cli.ts",
"src/project-config.ts",
"custom_typings/command-line-args.d.ts",
"custom_typings/command-line-commands.d.ts",
"custom_typings/command-line-usage.d.ts",
"custom_typings/css-slam.d.ts",
"custom_typings/dom5.d.ts",
"custom_typings/fs-extra.d.ts",
"custom_typings/github.d.ts",
"custom_typings/node.d.ts",
"custom_typings/plylog.d.ts",
"custom_typings/polymer-build.d.ts",
"custom_typings/temp.d.ts",
"custom_typings/web-component-tester.d.ts",
"custom_typings/yeoman-environment.d.ts",
"custom_typings/yeoman-generator.d.ts",
"typings/index.d.ts",
"node_modules/typescript/lib/lib.core.es6.d.ts"
],
"atom": {
"rewriteTsconfig": true
}
}