2016-10-31 21:02:06 +00:00
|
|
|
{
|
2021-03-01 07:48:51 +00:00
|
|
|
"extends": "@tsconfig/recommended/tsconfig.json",
|
2016-10-31 21:02:06 +00:00
|
|
|
"compilerOptions": {
|
2021-03-03 16:51:39 +00:00
|
|
|
"baseUrl": "./frontend",
|
2022-03-21 16:51:00 +00:00
|
|
|
"target": "ES2019",
|
2016-10-31 21:02:06 +00:00
|
|
|
"sourceMap": true,
|
2021-03-12 19:49:28 +00:00
|
|
|
"jsx": "react",
|
2022-10-14 16:45:57 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2023-08-18 13:15:23 +00:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"lib": ["ES2021.String"]
|
2016-10-31 21:02:06 +00:00
|
|
|
},
|
2023-08-18 13:15:23 +00:00
|
|
|
"include": ["./frontend/**/*"],
|
|
|
|
"exclude": ["node_modules"],
|
|
|
|
"typeRoots": ["./node_modules/@types", "./typings"]
|
2016-10-31 21:02:06 +00:00
|
|
|
}
|