1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 22:15:53 +02:00
.profile/tsconfig.json

33 lines
768 B
JSON
Raw Normal View History

2021-04-18 01:56:23 +02:00
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowJs": true,
"checkJs": true,
"jsx": "preserve",
"sourceMap": true,
"removeComments": true,
"noEmit": true,
"strict": true,
2021-08-13 15:48:29 +02:00
"types": ["jest", "@testing-library/jest-dom", "@testing-library/react"],
2021-04-18 01:56:23 +02:00
"baseUrl": ".",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": ["dom", "dom.iterable", "esnext"],
"skipLibCheck": true,
"resolveJsonModule": true,
2021-12-04 15:52:51 +01:00
"isolatedModules": true,
"incremental": true
2021-04-18 01:56:23 +02:00
},
"exclude": [
"dist",
".next",
"out",
"next.config.js",
"cypress.config.ts",
"cypress"
],
2021-04-18 01:56:23 +02:00
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
}