Skip to content

Commit

Permalink
Add tsconfig to git submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
tasiov committed Nov 27, 2023
1 parent 66b04e6 commit d9b3dd2
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,27 @@
{
"extends": "@uju-labs/tsconfig/common.json",
"$schema": "https://json.schemastore.org/tsconfig.json",
"compilerOptions": {
"outDir": "dist"
"types": ["bun-types"],
"lib": ["ESNext"],
"target": "ESNext",
"composite": false,
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"inlineSources": false,
"isolatedModules": true,
"moduleDetection": "force",
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveWatchOutput": true,
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"module": "commonjs",
"moduleResolution": "node",
"outDir": "dist",
"noEmit": false
},
"include": ["index.ts"]
"include": ["index.ts"],
"exclude": ["node_modules"]
}

0 comments on commit d9b3dd2

Please sign in to comment.