Add some sidebars and license stuff

This commit is contained in:
2023-07-21 11:55:10 +09:00
parent 3397d7096d
commit fdf8c3b173
21 changed files with 3627 additions and 300 deletions

View File

@ -5,7 +5,6 @@
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
@ -13,13 +12,22 @@
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
"noFallthroughCasesInSwitch": true,
/* Aliases */
"baseUrl": "./",
"paths": {
"@/*": ["src/*"],
"@mui/styled-engine": ["./node_modules/@mui/styled-engine-sc"]
}
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
"references": [
{
"path": "./tsconfig.node.json"
}
]
}