mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-09 11:28:14 +08:00
27 lines
665 B
JSON
27 lines
665 B
JSON
{
|
|
"compilerOptions": {
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"moduleResolution": "node",
|
|
"noUnusedLocals": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"noImplicitAny": true,
|
|
"lib": ["dom", "esnext"],
|
|
"module": "esnext",
|
|
"esModuleInterop": true,
|
|
"rootDir": "./src",
|
|
"outDir": "./pkg",
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "es2021",
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"strict": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"types": ["node"]
|
|
}
|