2024-04-12 11:52:19 -05:00
|
|
|
{
|
|
|
|
"extends": "../tsconfig.base.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ESNext",
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
2024-05-09 05:56:45 -05:00
|
|
|
"paths": {
|
|
|
|
"@plugin/*": ["./plugin-src/*"],
|
|
|
|
"@ui/*": ["./ui-src/*"],
|
|
|
|
"react": ["./node_modules/preact/compat/"],
|
|
|
|
"react-dom": ["./node_modules/preact/compat/"],
|
|
|
|
"react-dom/client": ["./node_modules/preact/compat/client"]
|
|
|
|
},
|
2024-04-12 11:52:19 -05:00
|
|
|
"allowJs": false,
|
2024-05-09 05:56:45 -05:00
|
|
|
"skipLibCheck": true,
|
2024-04-12 11:52:19 -05:00
|
|
|
"esModuleInterop": false,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
2024-05-03 06:43:07 -05:00
|
|
|
"jsx": "react-jsx",
|
2024-05-09 05:56:45 -05:00
|
|
|
"jsxImportSource": "preact",
|
2024-05-03 06:43:07 -05:00
|
|
|
"allowSyntheticDefaultImports": true
|
2024-04-12 11:52:19 -05:00
|
|
|
}
|
|
|
|
}
|