5e945b5c6f
- chrome launch configuration for webapp added, - include `*.tsx` files in `tsconfig.json` so that jest tests inside `*.tsx` files don't show errors about not found jest functions
16 lines
215 B
JSON
16 lines
215 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": [
|
|
"../node_modules/*",
|
|
"../@custom_types/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"./**/*.ts",
|
|
"./**/*.tsx"
|
|
]
|
|
}
|