mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-01 01:59:56 +00:00
29 lines
649 B
JSON
29 lines
649 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": false,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"node_modules/inferno/dist/index.d.ts"
|
|
]
|
|
}
|