25 lines
560 B
JSON
25 lines
560 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"composite": true,
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"incremental": true,
|
|
"jsx": "react",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noEmitOnError": true,
|
|
"noImplicitAny": true,
|
|
"noUnusedLocals": true,
|
|
"preserveWatchOutput": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "lib",
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"target": "es2017",
|
|
"types": ["jest"]
|
|
},
|
|
"include": ["src/*"]
|
|
}
|