Files
suwayomi-material-you-webui/tsconfig.json
T

45 lines
898 B
JSON
Raw Normal View History

2020-12-24 16:50:50 +01:00
{
"compilerOptions": {
2023-06-05 01:42:39 +02:00
"baseUrl": ".",
"paths": {
2023-08-14 21:43:06 +02:00
"@/*": [
"./src/*"
]
2023-06-05 01:42:39 +02:00
},
2023-08-14 21:43:06 +02:00
"target": "ES2020",
"useDefineForClassFields": true,
2020-12-24 16:50:50 +01:00
"lib": [
2023-08-14 21:43:06 +02:00
"ESNEXT",
"ES2020",
"DOM",
"DOM.Iterable"
2020-12-24 16:50:50 +01:00
],
2023-08-14 21:43:06 +02:00
"module": "ESNext",
2020-12-24 16:50:50 +01:00
"skipLibCheck": true,
2023-08-14 21:43:06 +02:00
/* Bundler mode */
2020-12-24 16:50:50 +01:00
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
2023-08-15 22:10:14 +02:00
"moduleResolution": "node",
2023-08-14 21:43:06 +02:00
"allowImportingTsExtensions": true,
2020-12-24 16:50:50 +01:00
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
2023-08-14 21:43:06 +02:00
"jsx": "react-jsx",
/* Linting */
"strict": true,
2024-05-23 01:21:03 +02:00
"strictNullChecks": true,
2023-08-14 21:43:06 +02:00
"noUnusedLocals": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true
2020-12-24 16:50:50 +01:00
},
"include": [
2023-08-14 21:43:06 +02:00
"src"
],
2024-05-23 01:21:03 +02:00
"exclude": ["**/node_modules"],
2023-08-14 21:43:06 +02:00
"references": [
{
"path": "./tsconfig.node.json"
}
2020-12-24 16:50:50 +01:00
]
2023-03-04 22:21:39 +05:30
}