mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-06 17:00:30 +08:00
34 lines
866 B
JSON
34 lines
866 B
JSON
{
|
|
"compilerOptions": {
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"moduleResolution": "Node",
|
|
"noUnusedLocals": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"noImplicitAny": true,
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"esModuleInterop": true,
|
|
"rootDir": "./src",
|
|
"outDir": "./pkg",
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "ES2020",
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"declarationDir": "./types",
|
|
"strict": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"],
|
|
"exclude": [
|
|
"src/**/*.stories.tsx",
|
|
"src/**/*.stories.ts",
|
|
"src/MockStudies.ts",
|
|
],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|