Skip to content

Commit

Permalink
consolidate ts config
Browse files Browse the repository at this point in the history
  • Loading branch information
interim17 committed Nov 4, 2024
1 parent 2999d03 commit 87686ef
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 35 deletions.
26 changes: 0 additions & 26 deletions tsconfig.base.json

This file was deleted.

6 changes: 0 additions & 6 deletions tsconfig.commonjs.json

This file was deleted.

25 changes: 22 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,27 @@
{
"extends": "./tsconfig.base",
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
"jsx": "react",
"lib": ["DOM", "ES2015", "ES6", "DOM.Iterable", "ScriptHost"],
"moduleResolution": "Node",
"skipLibCheck": true,
"noEmit": true,
"preserveConstEnums": true,
"sourceMap": true,
"strict": true,
"module": "ES6",
"resolveJsonModule": true,
"esModuleInterop": true
}
"esModuleInterop": true,
"plugins": [
{
"name": "typescript-plugin-css-modules",

}
]
},
"include": [
"src/**/*"
]
}

0 comments on commit 87686ef

Please sign in to comment.