mirror of
https://github.com/leon-ai/leon.git
synced 2024-12-18 14:21:32 +03:00
20 lines
434 B
JSON
20 lines
434 B
JSON
{
|
|
"compilerOptions": {
|
|
"useDefineForClassFields": true,
|
|
"skipLibCheck": true,
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
}
|
|
}
|