Skip to content

Commit 752389a

Browse files
committed
fix: add missing TypeScript base config at root
Creates the missing .config/tsconfig.base.json at the root level that was referenced by tsconfig.json. This resolves the build warning about the missing base config file.
1 parent 2d7e5a1 commit 752389a

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

.config/tsconfig.base.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"compilerOptions": {
3+
// The following options are not supported by @typescript/native-preview.
4+
// They are either ignored or throw an unknown option error:
5+
//"importsNotUsedAsValues": "remove",
6+
"allowImportingTsExtensions": false,
7+
"allowJs": false,
8+
"composite": false,
9+
"declaration": false,
10+
"declarationMap": false,
11+
"erasableSyntaxOnly": true,
12+
"esModuleInterop": true,
13+
"exactOptionalPropertyTypes": true,
14+
"forceConsistentCasingInFileNames": true,
15+
"incremental": false,
16+
"isolatedModules": true,
17+
"jsx": "react-jsx",
18+
"lib": ["ES2024"],
19+
"module": "nodenext",
20+
"noEmit": true,
21+
"noEmitOnError": true,
22+
"noFallthroughCasesInSwitch": true,
23+
"noImplicitOverride": true,
24+
"noPropertyAccessFromIndexSignature": true,
25+
"noUncheckedIndexedAccess": true,
26+
"noUnusedLocals": true,
27+
"noUnusedParameters": true,
28+
"resolveJsonModule": true,
29+
"rewriteRelativeImportExtensions": true,
30+
"skipLibCheck": true,
31+
"sourceMap": true,
32+
"strict": true,
33+
"strictNullChecks": true,
34+
"target": "ES2024",
35+
"useUnknownInCatchVariables": true,
36+
"verbatimModuleSyntax": true
37+
}
38+
}

0 commit comments

Comments
 (0)