mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-24 01:48:18 +03:00
36 lines
711 B
JSON
36 lines
711 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"allowJs": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"jsx": "preserve",
|
||
|
"lib": [
|
||
|
"dom",
|
||
|
"es2019"
|
||
|
],
|
||
|
"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
|
||
|
},
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"**/*.spec.*"
|
||
|
],
|
||
|
"include": [
|
||
|
"*.d.ts",
|
||
|
"**/*.ts",
|
||
|
"**/*.tsx"
|
||
|
]
|
||
|
}
|