-
Notifications
You must be signed in to change notification settings - Fork 11
/
tsconfig.json
34 lines (34 loc) · 924 Bytes
/
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
{
"compileOnSave": false,
"compilerOptions": {
"allowJs": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"downlevelIteration": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"noErrorTruncation": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"sourceMap": true,
"lib": ["ESNext", "dom", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "Bundler",
"target": "ESNext",
"jsx": "react-jsx",
"noEmit": true,
"baseUrl": "./",
"declaration": false,
"paths": {
"src/*": ["src/*"]
}
},
"exclude": ["node_modules"],
"include": ["src/**/*", "src/**/*.json", "src/**/*.mdx", "**/*.ts"]
}