X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tsconfig.json;h=182a29da4f281ac862ba8048a3d3c477b0f8b010;hb=72a51520e63ed454f9aa3784b57ae9616e788b77;hp=39bd6d90c89eab5afba3b35aa1cf9ef3bede3d9c;hpb=f045358da15636a5e2eb4be0a1bf3f0664651ce3;p=poolifier.git diff --git a/tsconfig.json b/tsconfig.json index 39bd6d90..182a29da 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,11 +1,16 @@ { + "$schema": "https://json.schemastore.org/tsconfig", "compilerOptions": { - "target": "ES2018", - "module": "CommonJS", + "target": "ES2022", + "module": "ES2022", "outDir": "lib", - "esModuleInterop": true, - "declaration": true + "moduleResolution": "Node", + "declaration": true, + "declarationDir": "lib/dts", + "strict": true, + "verbatimModuleSyntax": true, + "forceConsistentCasingInFileNames": true }, - "include": ["src/**/*.ts"], - "exclude": ["node_modules"] + "include": ["**/*.ts"], + "exclude": ["node_modules", "lib"] }