Skip to content

Commit

Permalink
build: create root tsconfig.base.json (#4)
Browse files Browse the repository at this point in the history
Signed-off-by: Yokozuna59 <u.yokozuna@gmail.com>
  • Loading branch information
Yokozuna59 authored May 5, 2023
1 parent ab33a47 commit 4af84c4
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"compilerOptions": {
"allowArbitraryExtensions": false,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"declaration": true,
"exactOptionalPropertyTypes": true,
"module": "ES6",
"moduleResolution": "node",
"newLine": "lf",
"noImplicitOverride": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noStrictGenericChecks": false,
"removeComments": true,
"strict": true,
"stripInternal": true,
"target": "ES6"
}
}

0 comments on commit 4af84c4

Please sign in to comment.