mirror of
https://github.com/stashapp/stash.git
synced 2025-12-12 11:22:37 +01:00
* Add page registration * Add example plugin * First version of proper react plugins * Make reference react plugin * Add patching functions * Add tools link poc * NavItem poc * Add loading hook for lazily loaded components * Add documentation
28 lines
No EOL
755 B
JSON
28 lines
No EOL
755 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2019",
|
|
"outDir": "dist",
|
|
// "lib": ["dom", "dom.iterable", "esnext"],
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
// "module": "es2020",
|
|
"module": "None",
|
|
"moduleResolution": "node",
|
|
// "resolveJsonModule": true,
|
|
// "noEmit": true,
|
|
"jsx": "react",
|
|
"experimentalDecorators": true,
|
|
"baseUrl": ".",
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"isolatedModules": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"useDefineForClassFields": true,
|
|
// "types": ["React"]
|
|
},
|
|
"include": ["src"]
|
|
}
|
|
|