tsconfig.json
↔ TS Manifest to config TSC behavior
"extends"
to add additional tsconfig schema for library
"exclude": ["_FILE_PATHS", "_OR_ENTIRE_FOLDERS_"]
to exclude file/dir from TSC
"files": ["_FILEONLY_"]
to include file for TSC
References
to fix [**_
tsconfig.json_**](tsconfig-json) to run .tsx AND use import statements
↔ change tsconfig settings as follows:
"target": "ESNext",
"module": "CommonJS"
remove from package.json
"type": "module" //DELETE THIS!!