2022-02-27 00:13:35 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": "app/",
|
2022-05-04 19:24:58 +00:00
|
|
|
"outDir": "build/",
|
2022-02-27 00:13:35 +00:00
|
|
|
"sourceMap": true,
|
2022-03-24 19:27:27 +00:00
|
|
|
"strict": true,
|
2022-04-16 00:54:40 +00:00
|
|
|
"module": "es2022",
|
2022-05-26 18:51:59 +00:00
|
|
|
"lib": ["es2019", "es6", "dom", "webworker"],
|
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
|
|
|
}
|