mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-21 11:51:17 +00:00
0aad0392bc
* Initial inferno commit. * Fixing husky * Fixing submodule * Removing extra dockerfile lines * Some cleanup, refactoring into components * Testing out a drone build. * Removing lemmy-docs * Removing gitmodules * Trying to add again * Don't init. * check folder. * check folder 2. * Removing lemmy-docs again * Adding lemmy-docs again * Adding submodule init. * Removing ls. * Trying a first docker deploy. * Removing arm64 build. * Upgrading deps, fixing links.
27 lines
579 B
JSON
27 lines
579 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,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"node_modules/inferno/dist/index.d.ts",
|
|
]
|
|
}
|