hedgedoc/frontend/tsconfig.json

46 lines
845 B
JSON
Raw Normal View History

{
"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"
],
"plugins": [
{
"name": "next"
}
]
},
"include": [
"src/external-types/images/index.d.ts",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules",
"cypress",
"cypress.config.ts",
".eslintrc.js"
]
}