X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tsconfig.json;h=1bd56853f33732df968911426eddccc9ea1c1a46;hb=3466e757691e2a07e2437d77167c78a0820c0431;hp=75b92b541806ab3119092ede960bc4c097a8db64;hpb=ee99693bf5c34d3acaf39db6d4506297b183e47d;p=poolifier.git diff --git a/tsconfig.json b/tsconfig.json index 75b92b54..1bd56853 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,12 +1,16 @@ { + "$schema": "https://json.schemastore.org/tsconfig", "compilerOptions": { - "target": "ES2018", - "module": "CommonJS", - "outDir": "lib", - "esModuleInterop": true, + "target": "ES2022", + "module": "ES2022", + "moduleResolution": "Node", + "typeRoots": ["./node_modules/@types", "./@types"], "declaration": true, - "strict": true + "declarationDir": "./lib/dts", + "strict": true, + "verbatimModuleSyntax": true, + "forceConsistentCasingInFileNames": true }, - "include": ["src/**/*.ts"], - "exclude": ["node_modules"] + "include": ["**/*.ts"], + "exclude": ["node_modules", "lib"] }