hedgedoc/frontend/tsconfig.json
Philip Molares 1c16e25e14 feat(frontend): replace forkawesome with bootstrap icons
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>
2023-02-24 14:31:17 +01:00

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"
]
}