23 lines
408 B
JSON
23 lines
408 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "esnext",
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"allowJs": true,
|
||
|
"strict": true,
|
||
|
"esModuleInterop": true,
|
||
|
"skipLibCheck": true,
|
||
|
"jsx": "react",
|
||
|
"jsxFactory": "createElement",
|
||
|
"jsxFragmentFactory": "Fragment",
|
||
|
"incremental": true
|
||
|
},
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"**/build",
|
||
|
"**/build-module",
|
||
|
"**/test/*",
|
||
|
"**/jest.config.js"
|
||
|
]
|
||
|
}
|