mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 09:30:31 +03:00
38 lines
1,014 B
JSON
38 lines
1,014 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"jsx": "react-jsx",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"types": ["vite/client", "vitest/globals"],
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noEmit": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"preserveConstEnums": true,
|
|
"removeComments": false,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@shlinkio/shlink-frontend-kit": ["shlink-frontend-kit/src"],
|
|
"@shlinkio/shlink-web-component": ["shlink-web-component/src"],
|
|
"@shlinkio/shlink-web-component/api-contract": ["shlink-web-component/src/api-contract"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"include": [
|
|
"*.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
]
|
|
}
|