41 lines
883 B
JSON
41 lines
883 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"allowImportingTsExtensions": true,
|
|
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"rootDir": "src",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"module": "esnext",
|
|
"resolveJsonModule": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"build",
|
|
"scripts",
|
|
"acceptance-tests",
|
|
"webpack",
|
|
"jest",
|
|
"src/setupTests.ts"
|
|
],
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|