monitor/nui/tsconfig.json
2025-04-16 22:30:27 +07:00

31 lines
701 B
JSON

{
"compilerOptions": {
"target": "ES6",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ES6"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ES6",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* mod resolution. */
"paths": {
"@shared/*": ["../shared/*"],
"@nui/*": ["./*"]
},
},
"include": ["src"],
"references": [
{ "path": "./tsconfig.node.json" },
{ "path": "../shared" }
]
}