feat: sample lib & turborepo setup

This commit is contained in:
Benjamin Singleton 2025-06-09 23:18:42 -05:00 committed by Sheldon Cooper
parent 4eefaa7cba
commit 63a9019b2a
9 changed files with 140 additions and 2 deletions

15
libs/common/tsconfig.json Normal file
View file

@ -0,0 +1,15 @@
{
"compilerOptions": {
"module": "nodenext",
"moduleResolution": "nodenext",
"target": "ES2022",
"strict": true,
"noUncheckedIndexedAccess": true,
"sourceMap": true,
"outDir": "dist",
"declaration": true,
},
"include": [
"src"
]
}