shlink-web-client/tsconfig.json

33 lines
742 B
JSON
Raw Normal View History

2020-08-22 09:06:41 +03:00
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"jsx": "react-jsx",
"lib": ["dom", "dom.iterable", "esnext"],
2023-05-27 12:36:18 +03:00
"types": ["vite/client", "vitest/globals"],
2020-08-22 09:06:41 +03:00
"module": "esnext",
"moduleResolution": "bundler",
2020-08-22 09:06:41 +03:00
"noEmit": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"preserveConstEnums": true,
"removeComments": false,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "esnext",
2020-08-22 09:06:41 +03:00
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true
2020-08-22 09:06:41 +03:00
},
"exclude": [
2022-03-07 16:26:35 +03:00
"node_modules"
2020-08-22 09:06:41 +03:00
],
"include": [
"*.d.ts",
"**/*.ts",
"**/*.tsx"
]
}