2022-02-27 00:13:35 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": "app/",
|
|
|
|
"sourceMap": true,
|
2022-03-24 19:27:27 +00:00
|
|
|
"strict": true,
|
2022-04-16 00:54:40 +00:00
|
|
|
"module": "es2022",
|
2022-02-27 00:13:35 +00:00
|
|
|
"target": "es5",
|
|
|
|
"jsx": "react",
|
|
|
|
"allowJs": true,
|
|
|
|
"moduleResolution": "node",
|
2022-03-25 21:39:26 +00:00
|
|
|
"resolveJsonModule": true,
|
2022-02-27 00:13:35 +00:00
|
|
|
"experimentalDecorators": true,
|
2022-04-05 20:01:16 +00:00
|
|
|
"esModuleInterop": true,
|
2022-03-15 13:48:18 +00:00
|
|
|
"typeRoots": [ "./types", "./node_modules/@types"]
|
|
|
|
},
|
2022-03-18 20:33:56 +00:00
|
|
|
"exclude": ["node_modules", "types", "**/*.test.*", "**/__mocks__/*", "**/__tests__/*"]
|
2022-02-27 00:13:35 +00:00
|
|
|
}
|