Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
feat: add analyze script
Browse files Browse the repository at this point in the history
  • Loading branch information
fox1t committed Feb 6, 2020
1 parent f15c238 commit 3b60961
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 20 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
"author": "Jack Meyer",
"contributors": [
"Maksim Sinik",
"Michael J Feher",
"Stefano Casasola"
],
"devDependencies": {
Expand All @@ -65,8 +64,8 @@
"@types/react-router": "~5.1.2",
"@types/react-router-dom": "~5.1.0",
"@types/redux-mock-store": "~1.0.1",
"@typescript-eslint/parser": "~2.19.0",
"@typescript-eslint/eslint-plugin": "~2.19.0",
"@typescript-eslint/parser": "~2.19.0",
"commitizen": "~4.0.3",
"commitlint-config-cz": "~0.13.0",
"coveralls": "~3.0.9",
Expand All @@ -92,9 +91,11 @@
"prettier": "~1.19.1",
"redux-mock-store": "~1.5.4",
"semantic-release": "~15.14.0",
"source-map-explorer": "^2.2.2",
"ts-jest": "~24.3.0"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"commit": "npx git-cz",
"start": "react-scripts start",
"build": "react-scripts build",
Expand Down
27 changes: 9 additions & 18 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,41 +8,32 @@
"dist"
],
"compilerOptions": {
"moduleResolution": "node",
"target": "es5",
"module": "esnext",
"outDir": "build",
"lib": [
"dom",
"esnext"
],
"importHelpers": true,
"sourceMap": true,
"rootDir": "./",
"strict": true,
"pretty": true,
"esModuleInterop": true,
"sourceMap": true,
"removeComments": true,
"newLine": "lf",
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"emitDecoratorMetadata": false,
"experimentalDecorators": false,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"importHelpers": true,
"jsx": "react",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"baseUrl": "./src",
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"noEmit": true,
"isolatedModules": true
"isolatedModules": true,
"allowSyntheticDefaultImports": true
}
}

0 comments on commit 3b60961

Please sign in to comment.