-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (34 loc) · 776 Bytes
/
Copy pathtsconfig.json
File metadata and controls
34 lines (34 loc) · 776 Bytes
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
{
"compilerOptions": {
"module": "es2020",
"target": "ESNext",
"jsx": "react-jsx",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"esModuleInterop": false,
"moduleResolution": "node",
"noImplicitAny": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"removeComments": true,
"outDir": "./build/",
"allowJs": true,
"typeRoots": ["src/types", "./node_modules/@types"]
},
"include": [
"app/**/*.ts",
"app/**/*.tsx",
"index.d.ts",
"cypress/**/*.ts",
"**.ts",
"**.cjs"
],
"references": [
{
"path": "./tsconfig.node.json"
}
],
"exclude": ["node_modules"]
}