mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-12 15:25:59 +00:00
* direct library import * running dev environment * fix linting * strickt null checks * fix linting * chunks * fix jumping button * don't exclude rollup-config from typechecks
26 lines
752 B
JSON
26 lines
752 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"paths": {
|
|
"utopia-ui": ["../lib/src"],
|
|
"#components/*": ["../lib/src/Components/*"],
|
|
"#utils/*": ["../lib/src/Utils/*"],
|
|
"#types/*": ["../lib/src/types/*"],
|
|
"#assets/*": ["../lib/src/assets/*"],
|
|
"#src/*": ["../lib/src/*"],
|
|
"#root/*": ["../lib/*"]
|
|
}
|
|
},
|
|
"include": ["src"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|