React hello world.

This commit is contained in:
Tom Alexander
2024-01-21 17:54:00 -05:00
parent 3c19a105b1
commit b232c8d7da
8 changed files with 7120 additions and 3 deletions

19
tsconfig.json Normal file
View File

@@ -0,0 +1,19 @@
{
"compilerOptions": {
"strict": true,
"outDir": "./dist/",
"module": "es6",
"target": "es5",
"jsx": "react",
"allowJs": true,
"sourceMap": true,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"allowSyntheticDefaultImports": true
},
"include": [
"src"
]
}