22 lines
420 B
JSON
22 lines
420 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"esModuleInterop": true,
|
||
|
"jsx": "react",
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"lib": [
|
||
|
"dom",
|
||
|
"esnext"
|
||
|
],
|
||
|
"strict": true,
|
||
|
"sourceMap": true,
|
||
|
"target": "esnext",
|
||
|
},
|
||
|
"exclude": [
|
||
|
"node_modules"
|
||
|
],
|
||
|
"include": [
|
||
|
"src/**/*.ts",
|
||
|
"src/**/*.tsx"
|
||
|
],
|
||
|
}
|