Skip to content

Commit

Permalink
build: add basic tsconfig.json
Browse files Browse the repository at this point in the history
The frontend config now requires a tsconfig for some reason.
Probably update that got in too early.
This is just really basic tscript.json from template, to appease the plugin.
  • Loading branch information
ezr-ondrej committed Oct 12, 2023
1 parent 02eb147 commit 7ed08f1
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"compilerOptions": {
"jsx": "react",
"sourceMap": true,
"moduleResolution": "node",
"target": "es5",
"allowSyntheticDefaultImports": true,
"noErrorTruncation": true,
"strict": true,
"rootDir": ".",
"skipLibCheck": true,
"lib": [
"dom",
"esnext"
],
"module": "esnext",
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true
},
"include": [
"./src/**/*.ts",
"./src/**/*.tsx"
],
"exclude": [
"./src/entry.ts",
"./*.js",
"./*.d.ts"
]
}

0 comments on commit 7ed08f1

Please sign in to comment.