aboutsummaryrefslogtreecommitdiff
path: root/packages/config/base.tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'packages/config/base.tsconfig.json')
-rw-r--r--packages/config/base.tsconfig.json22
1 files changed, 22 insertions, 0 deletions
diff --git a/packages/config/base.tsconfig.json b/packages/config/base.tsconfig.json
new file mode 100644
index 0000000..2d27ce4
--- /dev/null
+++ b/packages/config/base.tsconfig.json
@@ -0,0 +1,22 @@
+{
+ "$schema": "https://json.schemastore.org/tsconfig",
+ "display": "Default",
+ "compilerOptions": {
+ "strict": true,
+ "jsx": "react-jsx",
+ "esModuleInterop": true,
+ "skipLibCheck": true,
+ "preserveWatchOutput": true,
+ "forceConsistentCasingInFileNames": true,
+ "allowSyntheticDefaultImports": true,
+ "noUncheckedIndexedAccess": true,
+ "composite": true,
+ "declaration": true,
+ "emitDeclarationOnly": true,
+ "moduleResolution": "Node",
+ "resolveJsonModule": true,
+ "module": "ESNext",
+ "target": "ESNext",
+ "types": ["vite/client"]
+ }
+}