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

Commit

Permalink
build: re-introduce the accidentally deleted tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
weyert authored and fabien0102 committed Jan 13, 2020
1 parent 2f2c20e commit 98b6c30
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 @@ -105,5 +105,4 @@ examples/*.tsx

# 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 98b6c30

Please sign in to comment.