2022-02-27 00:13:35 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": "app/",
|
|
|
|
"sourceMap": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"module": "es6",
|
|
|
|
"target": "es5",
|
|
|
|
"jsx": "react",
|
|
|
|
"allowJs": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"experimentalDecorators": true,
|
2022-03-15 13:48:18 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"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
|
|
|
}
|