Skip to content

Commit

Permalink
Create tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
baozhoutao committed Aug 6, 2023
1 parent 54f85ee commit 3f9ddfa
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions packages/utils/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"compilerOptions": {
"outDir": "./lib",
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"importHelpers": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"noImplicitAny": false,
"declaration": true,
"noFallthroughCasesInSwitch": true,
//"noImplicitReturns": true,
"stripInternal": true,
"pretty": true,
"strictNullChecks": false,
"noUnusedLocals": false,
"downlevelIteration": true,
"skipLibCheck": true,
"lib": [
"es5",
"es6",
"es2015",
"es2016",
"es2017",
"esnext"
],
"removeComments": true
},
"include": [
"./src/**/*"
]
}

0 comments on commit 3f9ddfa

Please sign in to comment.