Skip to content

Commit

Permalink
fixes site config
Browse files Browse the repository at this point in the history
  • Loading branch information
Andarist committed Jun 29, 2024
1 parent 23e1060 commit 2edab5c
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions site/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,21 @@
{
"compilerOptions": {
"target": "es2018",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"jsxImportSource": "@emotion/react",
"incremental": true
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}

0 comments on commit 2edab5c

Please sign in to comment.