mirror of
https://github.com/mudita/mudita-center.git
synced 2025-12-23 22:28:03 -05:00
21 lines
556 B
JSON
21 lines
556 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"jsx": "react-jsx",
|
|
"downlevelIteration": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true,
|
|
"types": ["jest", "node", "@testing-library/jest-dom", "webpack-env"],
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": ["./apps/mudita-center/src", "./libs"],
|
|
"extends": "./tsconfig.base.json"
|
|
}
|