Skip to content

Commit

Permalink
tsconfig cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Glen Van Ginkel committed Feb 9, 2021
1 parent 687ef46 commit a231973
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 34 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"lint:fix": "npm run lint -- --fix",
"prebuild": "rimraf dist",
"perf": "node scripts/perf.js",
"build": "tsc --outDir dist/lib -d --module commonjs --declarationDir dist/types && rollup -c rollup.config.ts",
"build": "tsc --outDir dist/lib -d --module commonjs && rollup -c rollup.config.ts",
"start": "rollup -c rollup.config.ts -w",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
Expand Down
21 changes: 0 additions & 21 deletions tsconfig.base.json

This file was deleted.

11 changes: 0 additions & 11 deletions tsconfig.eslint.json

This file was deleted.

33 changes: 32 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"declaration": true,
"declarationDir": "dist/types",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"es2017",
"dom"
],
"moduleResolution": "node",
"module": "esnext",
"isolatedModules": true,
"esModuleInterop": true,
"target": "es5",
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"typeRoots": [
"node_modules/@types"
]
},
"exclude": [
"node_modules",
"dist",
Expand Down

0 comments on commit a231973

Please sign in to comment.