Files
introduction-to-testing/tsconfig.json
2024-10-02 08:41:56 -05:00

22 lines
467 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",
"examples/directory/src/user.jsx"
],
"exclude": ["node_modules", "dist"]
}