mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 17:56:30 -05:00
1c16e25e14
These icon replace fork awesome. A linter informs the user about the deprecation. See https://github.com/hedgedoc/hedgedoc/issues/2929 Co-authored-by: Philip Molares <philip.molares@udo.edu> Co-authored-by: Tilman Vatteroth <git@tilmanvatteroth.de> Signed-off-by: Philip Molares <philip.molares@udo.edu> Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
39 lines
773 B
JSON
39 lines
773 B
JSON
{
|
|
"compilerOptions" : {
|
|
"target" : "esnext",
|
|
"lib" : [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs" : true,
|
|
"skipLibCheck" : true,
|
|
"strict" : true,
|
|
"forceConsistentCasingInFileNames" : true,
|
|
"noEmit" : true,
|
|
"esModuleInterop" : true,
|
|
"module" : "esnext",
|
|
"moduleResolution" : "node",
|
|
"resolveJsonModule" : true,
|
|
"isolatedModules" : true,
|
|
"jsx" : "preserve",
|
|
"incremental" : true,
|
|
"types" : [
|
|
"node",
|
|
"@testing-library/jest-dom",
|
|
"@types/jest"
|
|
]
|
|
},
|
|
"include" : [
|
|
"src/external-types/images/index.d.ts",
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
],
|
|
"exclude" : [
|
|
"node_modules",
|
|
"cypress",
|
|
"cypress.config.ts",
|
|
".eslintrc.js"
|
|
]
|
|
}
|