2024-01-21 17:54:00 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"strict": true,
|
|
|
|
"outDir": "./dist/",
|
2024-01-21 18:30:20 -05:00
|
|
|
"module": "esnext",
|
2024-01-21 17:54:00 -05:00
|
|
|
"target": "es5",
|
|
|
|
"jsx": "react",
|
|
|
|
"allowJs": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitAny": true,
|
2024-01-21 21:11:38 -05:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2024-01-21 17:54:00 -05:00
|
|
|
},
|
2024-01-21 21:11:38 -05:00
|
|
|
"include": ["src"],
|
2024-01-21 17:54:00 -05:00
|
|
|
}
|