Skip to content
This repository has been archived by the owner on Jan 23, 2025. It is now read-only.

Commit

Permalink
more tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
silverbucket committed Jan 19, 2025
1 parent 3c60df6 commit 5e80240
Showing 1 changed file with 28 additions and 8 deletions.
36 changes: 28 additions & 8 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,37 @@
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "dist", // where to put the compiled JS files
"target": "ES2020", // which level of JS support to target
"module": "CommonJS", // which system for the program AMD, UMD, System, CommonJS
"incremental": false,
"baseUrl": ".",
"moduleResolution": "node",
"esModuleInterop": true,
// Recommended: Compiler complains about expressions implicitly typed as 'any'
"noImplicitAny": true,
"module": "commonjs",
"target": "es6",
"lib": [
"esnext"
],
"types": [
"node", "mocha"
]
],
"sourceMap": true,
"declaration": true,
"esModuleInterop": true,
"alwaysStrict": true,
"strictNullChecks": false,
"noImplicitAny": false,
"noImplicitReturns": true,
"noImplicitThis": false,
"noUnusedLocals": true,
"resolveJsonModule": true,
"downlevelIteration": true,
"allowJs": false,
"outDir": "dist",
"rootDir": "src",
"sourceRoot": "/",
"mapRoot": "/"
},
"include": ["src"], // which files to compile
"include": [
"src"
],
"exclude": [
"**/*.test.ts",
"node_modules",
Expand Down

0 comments on commit 5e80240

Please sign in to comment.