X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tsconfig.json;h=1c8465ed55ac106f66b3a935b9819e59cbd75341;hb=3ef87592f37b293b9593bfeefc77c78a8ddbabb3;hp=39bd6d90c89eab5afba3b35aa1cf9ef3bede3d9c;hpb=1eaa679e42a2a158b38e6fd615fd04b1bf6eb694;p=poolifier.git diff --git a/tsconfig.json b/tsconfig.json index 39bd6d90..1c8465ed 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,11 +1,13 @@ { + "$schema": "https://json.schemastore.org/tsconfig", "compilerOptions": { - "target": "ES2018", - "module": "CommonJS", + "target": "ES2022", + "module": "ES2022", "outDir": "lib", "esModuleInterop": true, - "declaration": true + "declaration": true, + "strict": true }, - "include": ["src/**/*.ts"], - "exclude": ["node_modules"] + "include": ["**/*.ts"], + "exclude": ["node_modules", "lib"] }