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

44 lines
878 B
JSON
Raw Normal View History

2020-12-24 16:50:50 +01:00
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
},
"target": "ES2020",
"useDefineForClassFields": true,
2020-12-24 16:50:50 +01:00
"lib": [
"ESNEXT",
"ES2020",
"DOM",
"DOM.Iterable"
2020-12-24 16:50:50 +01:00
],
"module": "ESNext",
2020-12-24 16:50:50 +01:00
"skipLibCheck": true,
/* Bundler mode */
2020-12-24 16:50:50 +01:00
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"allowImportingTsExtensions": true,
2020-12-24 16:50:50 +01:00
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true
2020-12-24 16:50:50 +01:00
},
"include": [
"src"
],
"exclude": ["**/node_modules", "**/.*/"],
"references": [
{
"path": "./tsconfig.node.json"
}
2020-12-24 16:50:50 +01:00
]
}