mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-04 20:41:30 +01:00
26 lines
708 B
JSON
26 lines
708 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"removeComments": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"types": ["jest", "@testing-library/jest-dom", "@testing-library/react"],
|
|
"baseUrl": ".",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"incremental": true
|
|
},
|
|
"exclude": ["dist", ".next", "out", "next.config.js"],
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
|
|
}
|