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

Commit

Permalink
Keep tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
Tejas Kumar authored and fabien0102 committed Jul 29, 2019
1 parent 708ee4c commit 9efe082
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,5 +102,4 @@ package-lock.json

# Files managed by operational-scripts
tslint.json
tsconfig.json
.prettierrc
25 changes: 25 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"exclude": ["node_modules", "dist", "lib", "__tests__", "**/*.test*", "**/*.spec*"],
"include": ["src"],
"compilerOptions": {
"skipLibCheck": true,
"target": "es5",
"module": "esnext",
"lib": ["es2015", "dom", "es2016.array.include", "es2017.object"],
"jsx": "react",
"declaration": true,
"declarationMap": true,
"rootDir": "./src",
"outDir": "./lib",
"downlevelIteration": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"inlineSourceMap": true
}
}

0 comments on commit 9efe082

Please sign in to comment.