ministream-frontend/tsconfig.json

15 lines
309 B
JSON
Raw 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,
"target": "esnext"
},
"exclude": ["node_modules"],
"include": ["src/**/*.ts", "src/**/*.tsx"]
}