chore(platform): 🔧 Configure Git line endings, ignore build artifacts, and update TypeScript strict mode settings
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
parent
fdafece8d1
commit
64cf871219
3 changed files with 21 additions and 0 deletions
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
.archive/*.tar.zst filter=lfs diff=lfs merge=lfs -text
|
||||
.archive/*.tar.gz filter=lfs diff=lfs merge=lfs -text
|
||||
10
.gitignore
vendored
Normal file
10
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
node_modules/
|
||||
.DS_Store
|
||||
.turbo/
|
||||
dist/
|
||||
build/
|
||||
.next/
|
||||
*.log
|
||||
.env
|
||||
.env.local
|
||||
/tmp/
|
||||
9
@platform/tsconfig.json
Normal file
9
@platform/tsconfig.json
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"extends": "./codebase/tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"baseUrl": "./codebase",
|
||||
"noEmit": true
|
||||
},
|
||||
"include": ["codebase/**/*.ts", "codebase/**/*.tsx"],
|
||||
"exclude": ["node_modules", "dist", "build"]
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue