Files
introduction-to-testing/jsconfig.json
2024-09-16 15:44:34 -06:00

17 lines
380 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"paths": {
"*": ["node_modules/*"],
"./*": ["./*"],
"./*.html": ["./*"],
"./*.html?raw": ["./*"]
}
},
"include": ["examples/**/*.js", "examples/accident-counter/src/reducer.ts"],
"exclude": ["node_modules", "dist"]
}