mirror of
https://github.com/DerTyp7/teamspeak-obs-overlay.git
synced 2025-10-29 12:52:09 +01:00
38 lines
958 B
JSON
38 lines
958 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
"baseUrl": "./src",
|
|
|
|
"paths": {
|
|
"@/*": ["/src/*"],
|
|
"@components/*": ["/src/components/*"],
|
|
"@assets/*": ["/src/assets/*"],
|
|
"@styles/*": ["/src/styles/*"],
|
|
"@utils/*": ["/src/utils/*"],
|
|
"@interfaces/*": ["/src/interfaces/*"],
|
|
"@handlers/*": ["/src/handlers/*"]
|
|
},
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["src", "tests/teamspeakHandler.test.ts"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|