Skip to content

Commit 0582b46

Browse files
committed
chore: update tsconfigs
1 parent 4e15837 commit 0582b46

6 files changed

Lines changed: 13 additions & 4 deletions

File tree

apps/backend-convex/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
2-
"extends": "@local/tsconfig/base.json",
2+
"extends": "@local/tsconfig/base.tsconfig.json",
33
"compilerOptions": {
44
"composite": true,
55
"types": [
6+
"node",
67
"vitest"
78
],
89
"emitDeclarationOnly": true,

apps/backend/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
2-
"extends": "@local/tsconfig/base.json",
2+
"extends": "@local/tsconfig/base.tsconfig.json",
33
"compilerOptions": {
44
"composite": true,
55
"types": [
6+
"node",
67
"vitest",
78
"@ark/schema"
89
],

locals/common/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"extends": "@local/tsconfig/base.json",
2+
"extends": "@local/tsconfig/base.tsconfig.json",
33
"include": ["."]
44
}

locals/locales/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@local/tsconfig/base.json",
2+
"extends": "@local/tsconfig/base.tsconfig.json",
33
"include": ["."],
44
"exclude": ["dist", "node_modules"]
55
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,21 @@
44
"compilerOptions": {
55
"target": "ESNext",
66
"lib": ["ESNext"],
7+
"moduleDetection": "force",
78
"module": "ESNext",
89
"moduleResolution": "Bundler",
10+
"types": [
11+
"node"
12+
],
913
"strict": true,
14+
"noUncheckedSideEffectImports": true,
15+
"noUncheckedIndexedAccess": true,
1016
"declaration": true,
1117
"inlineSources": false,
1218
"esModuleInterop": true,
1319
"forceConsistentCasingInFileNames": true,
1420
"isolatedModules": true,
21+
"verbatimModuleSyntax": true,
1522
"preserveWatchOutput": true,
1623
"skipLibCheck": true
1724
},

0 commit comments

Comments
 (0)