mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-06 17:00:30 +08:00
32 lines
725 B
JSON
32 lines
725 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"strictNullChecks": true,
|
|
"moduleResolution": "node",
|
|
"noUnusedLocals": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"outDir": "./optuna_dashboard/public/",
|
|
"paths": {
|
|
"plotly.js-dist-min": ["node_modules/@types/plotly.js"]
|
|
},
|
|
"noImplicitAny": true,
|
|
"lib": ["dom", "esnext"],
|
|
"module": "esnext",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "es5",
|
|
"jsx": "react",
|
|
"sourceMap": true,
|
|
"strict": true
|
|
},
|
|
"files": [
|
|
"./optuna_dashboard/ts/index.tsx"
|
|
],
|
|
"include": [
|
|
"./optuna_dashboard/ts/types/**/*",
|
|
"./typescript_tests/**/*"
|
|
],
|
|
"types": ["node"]
|
|
}
|