mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-01 10:09:56 +00:00
28 lines
675 B
JSON
28 lines
675 B
JSON
{
|
|
"compilerOptions": {
|
|
"pretty": true,
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"allowSyntheticDefaultImports": true,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"moduleResolution": "node",
|
|
"lib": ["es2017", "dom"],
|
|
"types": ["inferno"],
|
|
"jsx": "preserve",
|
|
"noUnusedLocals": true,
|
|
"baseUrl": "./src",
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"experimentalDecorators": true,
|
|
"strictNullChecks": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"node_modules/inferno/dist/index.d.ts"
|
|
]
|
|
}
|