This commit is contained in:
Lee 2024-10-04 22:25:22 +01:00
parent e105a76bf2
commit 0ad7f1662e
2 changed files with 3 additions and 2 deletions

@ -1,6 +1,7 @@
{ {
"compilerOptions": { "compilerOptions": {
"module": "commonjs", "module": "NodeNext",
"moduleResolution": "NodeNext",
"declaration": true, "declaration": true,
"removeComments": true, "removeComments": true,
"emitDecoratorMetadata": true, "emitDecoratorMetadata": true,
@ -10,7 +11,6 @@
"sourceMap": true, "sourceMap": true,
"outDir": "./dist", "outDir": "./dist",
"baseUrl": "./", "baseUrl": "./",
"incremental": true,
"skipLibCheck": true, "skipLibCheck": true,
"strictNullChecks": false, "strictNullChecks": false,
"noImplicitAny": false, "noImplicitAny": false,

@ -5,4 +5,5 @@ export default defineConfig({
splitting: false, splitting: false,
sourcemap: true, sourcemap: true,
clean: true, clean: true,
dts: true, // This line enables type declaration file generation
}); });