forked from ionic-team/stencil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
111 lines (109 loc) · 2.66 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"compilerOptions": {
"alwaysStrict": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"declaration": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"jsxFactory": "h",
"lib": [
"dom",
"es2018",
"esnext.array"
],
"module": "esnext",
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "build",
"pretty": true,
"target": "es2017",
"baseUrl": ".",
"paths": {
"@app-data": [
"src/app-data/index.ts"
],
"@compiler": [
"src/compiler_next/index.ts"
],
"@compiler_legacy": [
"src/compiler/index.ts"
],
"@compiler-plugins": [
"src/compiler_next/sys/modules/compiler-plugins.ts"
],
"@dev-server": [
"src/dev-server/index.ts"
],
"@dts-core": [
"src/compiler_next/sys/modules/dts-core.ts"
],
"@dts-internal": [
"src/compiler_next/sys/modules/dts-internal.ts"
],
"@hydrate-factory": [
"src/hydrate/runner/hydrate-factory.ts"
],
"@mock-doc": [
"src/mock-doc/index.ts"
],
"@optimize-css": [
"src/compiler_next/optimize/optimize-css.ts"
],
"@platform": [
"src/client/index.ts"
],
"@runtime": [
"src/runtime/index.ts"
],
"@testing": [
"src/testing/index.ts"
],
"@stencil/core/internal/client": [
"src/client/index.ts"
],
"@stencil/core/internal": [
"src/internal/index.ts"
],
"@stencil/core/testing": [
"src/testing/index.ts"
],
"@utils": [
"src/utils/index.ts"
]
}
},
"files": [
"src/app-data/index.ts",
"src/client/index.ts",
"src/client/polyfills/css-shim/index.ts",
"src/cli/index.ts",
"src/cli_next/public.ts",
"src/cli_next/worker/index.ts",
"src/compiler/index.ts",
"src/compiler_next/public.ts",
"src/compiler_next/sys/modules/index.ts",
"src/dev-server/index.ts",
"src/dev-server/public.ts",
"src/dev-server/server-worker.ts",
"src/dev-server/dev-client/index.ts",
"src/hydrate/platform/index.ts",
"src/hydrate/runner/index.ts",
"src/internal/default.ts",
"src/internal/index.ts",
"src/mock-doc/index.ts",
"src/screenshot/index.ts",
"src/screenshot/pixel-match.ts",
"src/sys/node/index.ts",
"src/sys/node/node-sys-worker.ts",
"src/testing/index.ts",
"src/testing/platform.ts"
],
"include": [
"types/*.d.ts"
]
}