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

32 lines
627 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": {
"@/*": ["./src/*"]
},
2023-06-05 00:58:21 +02:00
"target": "ESNext",
2020-12-24 16:50:50 +01:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": [
2023-06-05 00:58:21 +02:00
"src",
"vite.config.ts"
2020-12-24 16:50:50 +01:00
]
2023-03-04 22:21:39 +05:30
}