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

17 lines
412 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"paths": {
"*": ["node_modules/*"]
},
"jsx": "react-jsx",
"forceConsistentCasingInFileNames": true
},
"include": ["examples/**/*.js", "examples/**/*.svelte", "examples/**/*.ts"],
"exclude": ["node_modules", "dist"]
}