-
Notifications
You must be signed in to change notification settings - Fork 787
/
tsconfig.json
82 lines (82 loc) · 2.95 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"alwaysStrict": true,
"baseUrl": ".",
"declaration": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"lib": ["dom", "es2021"],
"module": "esnext",
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "build",
"paths": {
"@app-data": ["src/app-data/index.ts"],
"@app-globals": ["src/app-globals/index.ts"],
"@environment": ["src/compiler/sys/environment.ts"],
"@dev-server-process": ["src/dev-server/server-process.ts"],
"@hydrate-factory": ["src/hydrate/runner/hydrate-factory.ts"],
"@platform": ["src/client/index.ts"],
"@runtime": ["src/runtime/index.ts"],
"@stencil/core/compiler": ["src/compiler/index.ts"],
"@stencil/core/declarations": ["src/declarations/index.ts"],
"@stencil/core/dev-server": ["src/dev-server/index.ts"],
"@stencil/core/internal": ["src/internal/index.ts"],
"@stencil/core/internal/client": ["src/client/index.ts"],
"@stencil/core/internal/client/patch-browser": ["src/client/client-patch-browser.ts"],
"@stencil/core/internal/client/patch-es": ["src/client/client-patch-esm.ts"],
"@stencil/core/internal/testing": ["src/testing/platform/index.ts"],
"@stencil/core/mock-doc": ["src/mock-doc/index.ts"],
"@stencil/core/testing": ["src/testing/index.ts"],
"@stencil/core/cli": ["src/cli/index.ts"],
"@sys-api-node": ["src/sys/node/index.ts"],
"@utils": ["src/utils/index.ts"],
"@utils/*": ["src/utils/*"],
"@utils/shadow-css": ["src/utils/shadow-css"]
},
"pretty": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"target": "es2018",
"useUnknownInCatchVariables": true
},
"files": [
"src/app-data/index.ts",
"src/app-globals/index.ts",
"src/cli/config-flags.ts",
"src/cli/index.ts",
"src/cli/public.ts",
"src/client/client-patch-browser.ts",
"src/client/index.ts",
"src/compiler/index.ts",
"src/compiler/public.ts",
"src/dev-server/client/index.ts",
"src/dev-server/dev-server-client/index.ts",
"src/dev-server/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/public.ts",
"src/sys/node/worker.ts",
"src/testing/index.ts",
"src/testing/platform/index.ts"
],
"include": ["types/*.d.ts", "src/declarations/*.ts", "src/**/*.spec.ts", "src/utils/**/*.ts"]
}