feat(create-turbo): apply official-starter transform

This commit is contained in:
Turbobot
2025-10-06 16:18:41 +02:00
committed by Andras Bacsai
parent 84da487a0c
commit 5d8a02f127
56 changed files with 3465 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{
"name": "@repo/typescript-config",
"version": "0.0.0",
"private": true,
"type": "module",
"license": "MIT",
"publishConfig": {
"access": "public"
}
}

View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"moduleResolution": "NodeNext",
"module": "NodeNext",
"target": "ESNext",
"verbatimModuleSyntax": true,
"isolatedModules": true,
"lib": ["esnext", "DOM", "DOM.Iterable"]
}
}