Skip to content

Commit

Permalink
feat: add tsconfig file
Browse files Browse the repository at this point in the history
  • Loading branch information
sinkaroid committed Jun 3, 2022
1 parent 267c84b commit 2dce148
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"$schema": "http://json.schemastore.org/tsconfig",
"compilerOptions": {
"outDir": "./build",
"allowJs": true,
"target": "ESNext",
"baseUrl": "src",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"module": "commonjs",
"paths": {},
"typeRoots": ["./node_modules/@types"],
"inlineSourceMap": true,
"charset": "UTF-8",
"downlevelIteration": true,
"newLine": "lf",
"strict": true,
"strictBindCallApply": true,
"strictPropertyInitialization": false,
"declaration": true
},
"include": ["**/*"],
"exclude": ["node_modules", "build", "out", "tmp", "logs", "test"]
}

0 comments on commit 2dce148

Please sign in to comment.