utopia-ui/tsconfig.json
Ulf Gebhardt 545308e6a1
fix wrongful relative includes in tsconfig.json
For some reason specific Components were included in the tsconfig.json
with a relative path. This should have caused problems for anyone who
has not checked out `utopia-ui` in the coresponding location.
This was discovered due to the fact that we cannot include components
directly anymore since the include paths have project specific path
aliases
2024-11-20 12:49:35 +01:00

25 lines
569 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}