Skip to content

Commit

Permalink
chore: use strict tsconfig settings
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Mar 20, 2023
1 parent ccc980e commit 8ec94ee
Showing 1 changed file with 8 additions and 14 deletions.
22 changes: 8 additions & 14 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,35 +2,29 @@
"compilerOptions": {
"target": "ESNext",
"module": "NodeNext",
"lib": [
"ESNext"
],
"lib": ["ESNext"],
"noUnusedLocals": true,
"noUnusedParameters": true,
"isolatedModules": true,
"removeComments": true,
"declaration": true,
"rootDir": "./",
"outDir": "./build",
"esModuleInterop": true,
"strictNullChecks": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"strictPropertyInitialization": true,
"noImplicitAny": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"noImplicitThis": true,
"skipLibCheck": true,
"types": [
"@types/node"
]
"types": ["@types/node"]
},
"include": [
"./**/*"
],
"exclude": [
"./node_modules",
"./build"
],
"include": ["./**/*"],
"exclude": ["./node_modules", "./build"],
"ts-node": {
"swc": true
}
}
}

0 comments on commit 8ec94ee

Please sign in to comment.