From 7a3ef4a3cdb86e9eede785069db604ca40ddaffd Mon Sep 17 00:00:00 2001 From: porink0424 Date: Wed, 10 Jul 2024 11:07:03 +0900 Subject: [PATCH] Make tsconfig files common using "extends" --- optuna_dashboard/tsconfig.pkg.json | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/optuna_dashboard/tsconfig.pkg.json b/optuna_dashboard/tsconfig.pkg.json index a683fe3e..0e65b770 100644 --- a/optuna_dashboard/tsconfig.pkg.json +++ b/optuna_dashboard/tsconfig.pkg.json @@ -1,24 +1,8 @@ { + "extends": "./tsconfig.json", "compilerOptions": { - "isolatedModules": true, - "skipLibCheck": true, - "baseUrl": ".", - "moduleResolution": "node", - "noImplicitThis": true, - "alwaysStrict": true, "rootDir": "./ts", "outDir": "./pkg", - "paths": { - "plotly.js-dist-min": ["node_modules/@types/plotly.js"] - }, - "lib": ["dom", "esnext"], - "module": "esnext", - "esModuleInterop": true, - "allowSyntheticDefaultImports": true, - "target": "es6", - "jsx": "react", - "sourceMap": true, - "strict": true, "declaration": true, "declarationDir": "./types", },