Files
optuna-dashboard/tsconfig.json
T
2022-03-22 22:50:38 +09:00

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"]
}