stream/tsconfig.json

29 lines
652 B
JSON
Raw Normal View History

2023-06-21 12:27:52 +00:00
{
"compilerOptions": {
2023-12-04 11:01:56 +00:00
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"module": "ESNext",
2023-06-21 12:27:52 +00:00
"skipLibCheck": true,
2023-12-04 11:01:56 +00:00
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
2023-06-21 12:27:52 +00:00
"resolveJsonModule": true,
2023-12-07 12:35:46 +00:00
"esModuleInterop": true,
2023-12-04 11:01:56 +00:00
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
2023-12-04 11:03:08 +00:00
"noFallthroughCasesInSwitch": true,
"paths": {
"@/*": ["./src/*"]
}
2023-12-04 11:01:56 +00:00
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
2023-06-21 12:27:52 +00:00
}