Upload 2 files
Browse files- tsconfig.base.json +25 -0
- tsconfig.json +16 -0
tsconfig.base.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"compilerOptions": {
|
| 3 |
+
"isolatedModules": true,
|
| 4 |
+
"lib": ["es2022"],
|
| 5 |
+
"module": "esnext",
|
| 6 |
+
"moduleResolution": "bundler",
|
| 7 |
+
"noEmitOnError": true,
|
| 8 |
+
"noFallthroughCasesInSwitch": true,
|
| 9 |
+
"noImplicitOverride": false,
|
| 10 |
+
"noImplicitReturns": true,
|
| 11 |
+
"noUnusedLocals": false,
|
| 12 |
+
"noImplicitAny": true,
|
| 13 |
+
"noImplicitThis": true,
|
| 14 |
+
"strictNullChecks": true,
|
| 15 |
+
"strictFunctionTypes": false,
|
| 16 |
+
"strictBindCallApply": true,
|
| 17 |
+
"strictPropertyInitialization": true,
|
| 18 |
+
"useUnknownInCatchVariables": true,
|
| 19 |
+
"alwaysStrict": true,
|
| 20 |
+
"skipLibCheck": true,
|
| 21 |
+
"target": "es2022",
|
| 22 |
+
"types": [],
|
| 23 |
+
"customConditions": ["workspace"]
|
| 24 |
+
}
|
| 25 |
+
}
|
tsconfig.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"extends": "./tsconfig.base.json",
|
| 3 |
+
"compileOnSave": false,
|
| 4 |
+
"files": [],
|
| 5 |
+
"references": [
|
| 6 |
+
{
|
| 7 |
+
"path": "./lib/db"
|
| 8 |
+
},
|
| 9 |
+
{
|
| 10 |
+
"path": "./lib/api-client-react"
|
| 11 |
+
},
|
| 12 |
+
{
|
| 13 |
+
"path": "./lib/api-zod"
|
| 14 |
+
}
|
| 15 |
+
]
|
| 16 |
+
}
|