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",
|
2021-04-04 12:45:24 +00:00
|
|
|
"target": "ES2016",
|
2016-10-31 21:02:06 +00:00
|
|
|
"sourceMap": true,
|
2021-03-12 19:49:28 +00:00
|
|
|
"jsx": "react",
|
2021-06-18 20:33:45 +00:00
|
|
|
"allowSyntheticDefaultImports": true
|
2016-10-31 21:02:06 +00:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"./frontend/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
2021-03-24 13:18:56 +00:00
|
|
|
],
|
|
|
|
"typeRoots": [
|
|
|
|
"./node_modules/@types", "./typings"
|
2016-10-31 21:02:06 +00:00
|
|
|
]
|
|
|
|
}
|