Skip to content

Commit

Permalink
chore: update tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
baurine committed Jun 13, 2024
1 parent 970b6e0 commit 3b8bbc9
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 54 deletions.
Empty file removed eslint.config.js
Empty file.
28 changes: 3 additions & 25 deletions packages/core/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,7 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,

/* declaration */
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "./dist",

/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
// "noEmit": true,
"jsx": "react-jsx",

/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
"outDir": "./dist"
},
"include": ["src"]
"include": ["./src"]
}
2 changes: 1 addition & 1 deletion packages/extensions/basic-setup/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "../tsconfig.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/extensions/cur-sql/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "../tsconfig.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/extensions/lang-sql/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "../tsconfig.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/extensions/sql-parser/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "../tsconfig.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist"
},
Expand Down
28 changes: 3 additions & 25 deletions packages/react/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,7 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,

/* declaration */
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "./dist",

/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
// "noEmit": true,
"jsx": "react-jsx",

/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
"outDir": "./dist"
},
"include": ["src"]
"include": ["./src"]
}
File renamed without changes.

0 comments on commit 3b8bbc9

Please sign in to comment.