mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
50 lines
923 B
JSON
50 lines
923 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,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
],
|
|
"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"
|
|
}
|
|
]
|
|
}
|