ministream-frontend/tsconfig.json

16 lines
369 B
JSON
Raw Permalink Normal View History

2023-12-02 10:49:17 +00:00
{
2023-12-06 02:17:13 +00:00
"compilerOptions": {
"esModuleInterop": true,
"jsx": "react",
"module": "esnext",
"moduleResolution": "node",
"lib": ["dom", "esnext"],
"strict": true,
"sourceMap": true,
2023-12-07 21:43:55 +00:00
"target": "esnext",
"types": ["node", "jest", "@testing-library/jest-dom"]
2023-12-06 02:17:13 +00:00
},
"exclude": ["node_modules"],
"include": ["src/**/*.ts", "src/**/*.tsx"]
}