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