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

35 lines
947 B
JSON
Raw Normal View History

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