Skip to content

Commit

Permalink
edit tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
awran5 committed Sep 25, 2021
1 parent 1b66eea commit 7de1c5e
Show file tree
Hide file tree
Showing 3 changed files with 199 additions and 442 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,7 @@
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"semantic-release": "^18.0.0",
"typescript": "^4.4.3",
"typescript-plugin-css-modules": "^3.4.0"
"typescript": "^4.4.3"
},
"files": [
"dist"
Expand Down
11 changes: 5 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"plugins": [{ "name": "typescript-plugin-css-modules" }],
"target": "ESNext",
"baseUrl": "./",
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
Expand All @@ -10,16 +10,15 @@
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "ESNext",
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noImplicitAny": false,
"jsx": "react-jsx",
"declaration": true,
"outDir": "./dist",
"baseUrl": "."
"outDir": "./dist"
},
"include": ["src/**/*", "declaration.d.ts"],
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "example"]
}
Loading

0 comments on commit 7de1c5e

Please sign in to comment.