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
|
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"paths": {
"~/*": ["./src/*"]
},
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext", "WebWorker"],
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": false,
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"strict": false,
"noImplicitAny": false,
"strictNullChecks": false,
"noUncheckedSideEffectImports": false,
"noEmit": true,
"jsx": "react-jsx"
},
"include": ["src"]
}
|