stream/tsconfig.json

17 lines
365 B
JSON
Raw Normal View History

2023-06-21 12:27:52 +00:00
{
"compilerOptions": {
"baseUrl": "src",
"target": "es2020",
"module": "es2020",
"jsx": "react-jsx",
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
2023-08-01 09:47:49 +00:00
"allowJs": true,
"sourceMap": true
2023-06-21 12:27:52 +00:00
}
}