-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsconfig.json
57 lines (56 loc) · 1.21 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
{
"compilerOptions": {
"baseUrl": "./",
"rootDir": "./",
"jsx": "react-jsx",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"lib": [
"ESNext",
"dom",
"DOM.Iterable"
],
"declaration": false,
"strict": true,
"checkJs": false,
"noImplicitAny": true,
"noEmit": true,
"strictNullChecks": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": false,
"inlineSourceMap": true,
"inlineSources": true,
"skipLibCheck": true,
"esModuleInterop": true,
"moduleDetection": "auto",
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"strictPropertyInitialization": false,
"typeRoots": [
"./node_modules/@types"
],
},
"exclude": [
"misc",
"dist",
"node_modules",
"cdk.out",
"lib/user-interface/genai-newsletter-ui/dist",
"lib/api/functions/out",
"bin/*.json"
],
"include": [
"bin/*",
"lib/**/*",
"cli/"
],
"ts-node": {
"require": ["tsconfig-paths/register"]
}
}