48 lines
No EOL
983 B
JSON
48 lines
No EOL
983 B
JSON
{
|
|
"compilerOptions": {
|
|
/* Language and Environment */
|
|
"target": "ESNext",
|
|
"jsx": "react-jsx",
|
|
|
|
/* Modules */
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"types": ["vite/client", "vite-plugin-svgr/client"],
|
|
"allowUmdGlobalAccess": true,
|
|
"resolveJsonModule": true,
|
|
|
|
/* JavaScript Support */
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
|
|
/* Emit */
|
|
"noEmit": true,
|
|
|
|
/* Interop Constraints */
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
/* Type Checking */
|
|
"strict": true,
|
|
|
|
/* Module resolution */
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"prozilla-os": ["packages/prozilla-os/dist/main"],
|
|
"@prozilla-os/*": ["packages/*/dist/main", "packages/*/src/main", "packages/apps/*/dist/main"],
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"vite.config.ts",
|
|
"*.vite.config.ts",
|
|
"scripts/**/*",
|
|
],
|
|
"exclude": [
|
|
"**/node_modules/**/*",
|
|
"**/dist/**/*",
|
|
"./.vscode",
|
|
"./.github",
|
|
],
|
|
} |