stash/pkg/plugin/examples/react-component/tsconfig.json
WithoutPants b915428f06
UI Plugin API (#4256)
* 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
2023-11-28 13:06:44 +11:00

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