Files
introduction-to-testing/jsconfig.json
Steve Kinney a028678660 Initial commit
2024-09-13 15:59:51 -06:00

17 lines
336 B
JSON

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