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

Commit

Permalink
chore: updates tsconfig to match components library
Browse files Browse the repository at this point in the history
  • Loading branch information
jackcmeyer committed Sep 10, 2019
1 parent 4b30950 commit 3e35d33
Showing 1 changed file with 34 additions and 12 deletions.
46 changes: 34 additions & 12 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,47 @@
{
"include": [
"src",
"types"
],
"exclude": [
"node_modules",
"dist"
],
"compilerOptions": {
"target": "es5",
"module": "esnext",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"importHelpers": true,
"sourceMap": true,
"rootDir": "./",
"strict": true,
"pretty": true,
"removeComments": true,
"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",
"jsx": "react",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"baseUrl": "./src",
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react"
},
"include": [
"src"
]
"isolatedModules": true
}
}

0 comments on commit 3e35d33

Please sign in to comment.