IOPaint/web_app/tsconfig.json

33 lines
691 B
JSON
Raw Permalink Normal View History

2023-11-22 01:53:20 +01:00
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
2024-08-20 20:44:38 +02:00
"noUnusedLocals": false,
"noUnusedParameters": false,
2023-11-22 01:53:20 +01:00
"noFallthroughCasesInSwitch": true,
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
}
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}