mirror of
https://github.com/DerTyp7/react-teamspeak-remote-app-api.git
synced 2025-10-29 21:02:14 +01:00
32 lines
799 B
JSON
32 lines
799 B
JSON
{
|
|
"include": ["src"],
|
|
"exclude": ["dist", "node_modules"],
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"lib": ["dom", "esnext"],
|
|
"importHelpers": true,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"rootDir": "./src",
|
|
"outDir": "./dist/esm",
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"moduleResolution": "node",
|
|
"jsx": "react",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@assets/*": ["src/assets/*"],
|
|
"@utils/*": ["src/utils/*"],
|
|
"@interfaces/*": ["src/interfaces/*"],
|
|
"@handlers/*": ["src/handlers/*"]
|
|
}
|
|
}
|
|
}
|