2022-02-26 16:13:35 -08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": "app/",
|
|
|
|
"sourceMap": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"module": "es6",
|
|
|
|
"target": "es5",
|
|
|
|
"jsx": "react",
|
|
|
|
"allowJs": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"experimentalDecorators": true,
|
2022-03-15 06:48:18 -07:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"typeRoots": [ "./types", "./node_modules/@types"]
|
|
|
|
},
|
2022-03-18 13:33:56 -07:00
|
|
|
"exclude": ["node_modules", "types", "**/*.test.*", "**/__mocks__/*", "**/__tests__/*"]
|
2022-02-26 16:13:35 -08:00
|
|
|
}
|