Files
introduction-to-testing/jsconfig.json
2024-10-02 03:19:47 -05:00

17 lines
360 B
JSON

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