-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
53 lines (47 loc) · 1.18 KB
/
tsconfig.base.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
{
"compilerOptions": {
/* child packages configuration must have these attributes */
"baseUrl": ".",
"rootDir": "src",
"outDir": "dist",
/* Basic Options */
"target": "es2022",
"lib": ["es2022"],
"removeComments": true,
/* Module Options */
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
/* Check Options */
"strict": true,
"alwaysStrict": true,
"strictNullChecks": true,
"noImplicitAny": true,
"noImplicitThis": true,
"skipLibCheck": true,
"noImplicitReturns": true,
/* Javascript options */
"allowJs": true,
"checkJs": true,
/* Typescript options */
"declaration": true,
"declarationMap": true,
"sourceMap": true,
/* Advanced Options */
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true
// "importHelpers": true
// "paths": {
// "@root/*": ["src/*"]
// }
},
/* child packages configuration may have these attributes */
"include": [
"src/**/*"
],
"exclude": [
// see jest config
"**/(__tests__|__mocks__)/**/*.[jt]s?(x)",
"**/?(*.)+(spec|int-spec|test|unit|it|e2e).[tj]s?(x)"
]
}