browser-home/tsconfig.json

27 lines
639 B
JSON
Raw Normal View History

2024-08-22 13:55:43 +01:00
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"paths": {
"@Data/*": [
"./src/shared/data/*"
2024-08-22 13:55:43 +01:00
],
}
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}