Skip to content

Commit

Permalink
chore: combine all the tsconfigs
Browse files Browse the repository at this point in the history
  • Loading branch information
aekasitt committed Nov 14, 2024
1 parent 1801944 commit 40b1946
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 49 deletions.
24 changes: 0 additions & 24 deletions tsconfig.app.json

This file was deleted.

27 changes: 22 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
{
"files": [],
"references": [
{ "path": "./tsconfig.app.json" },
{ "path": "./tsconfig.node.json" }
]
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"forceConsistentCasingInFileNames": false,
"types": ["./src/vite-env.d.ts", "vite/client"]
},
"include": ["src"]
}
20 changes: 0 additions & 20 deletions tsconfig.node.json

This file was deleted.

0 comments on commit 40b1946

Please sign in to comment.