diff --git a/core/tsconfig.json b/core/tsconfig.json index 501bcbcb..0681bfee 100644 --- a/core/tsconfig.json +++ b/core/tsconfig.json @@ -1,12 +1,8 @@ { + "extends": "../tsconfig.json", "compilerOptions": { - "noImplicitAny": true, - "target": "ES2022", - "module": "Node16", - "moduleResolution": "Node16", "rootDir": "src", "outDir": "dist", - "declaration": true, "declarationDir": "dist" }, "include": [ diff --git a/hugo/tsconfig.json b/hugo/tsconfig.json index 0c1fa7ba..dd1f6c10 100644 --- a/hugo/tsconfig.json +++ b/hugo/tsconfig.json @@ -1,12 +1,8 @@ { + "extends": "../tsconfig.json", "compilerOptions": { - "noImplicitAny": true, - "target": "ES2022", - "module": "NodeNext", - "moduleResolution": "NodeNext", "rootDir": ".", "outDir": "dist", - "declaration": true, "declarationDir": "dist", "jsx": "react-jsx" }, diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000..d6ce28a3 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "noImplicitAny": true, + "target": "ES2022", + "module": "Node16", + "moduleResolution": "Node16", + "declaration": true, + "sourceMap": true + } +} \ No newline at end of file