Files
introduction-to-testing/tsconfig.json
2024-09-17 15:38:26 -06:00

15 lines
294 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"paths": {
"*": ["node_modules/*"]
},
"jsx": "react-jsx",
"forceConsistentCasingInFileNames": true
}
}