* feat(ui) - roles and permissions * feat(ui) - roles and permissions assist check * feat(ui) - roles and permissions dev tools * feat(ui) - roles and permissions logs * feat(ui) - roles and permissions logs * feat(ui) - roles and permissions cleanup
38 lines
No EOL
1 KiB
JSON
38 lines
No EOL
1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "es2020",
|
|
"moduleResolution": "node", //?
|
|
//"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"downlevelIteration": true,
|
|
//"sourceMap": false,
|
|
"lib": [ "es2020", "dom" ],
|
|
"jsx": "react",
|
|
"strict": true,
|
|
"noImplicitAny": false, // TODO: set true for the strict check
|
|
"incremental": true,
|
|
"baseUrl": ".",
|
|
"paths": { // TODO: one-source truth
|
|
"App": ["./app"],
|
|
"App/*": ["./app/*"],
|
|
"Types": ["./app/types" ],
|
|
"Types/*": ["./app/types/*"], // Sublime hack
|
|
"UI": ["./app/components/ui"],
|
|
"UI/*": ["./app/components/ui/*"],
|
|
"Duck": ["./app/duck"],
|
|
"Duck/*": ["./app/duck/*"],
|
|
"HOCs": ["./app/components/hocs"],
|
|
"HOCs/*": ["./app/components/hocs/*"],
|
|
"Shared": ["./app/components/shared"],
|
|
"Shared/*": ["./app/components/shared/*"],
|
|
"Player": ["./app/player"],
|
|
"Player/*": ["./app/player/*"],
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
".storybook",
|
|
"scripts"
|
|
]
|
|
} |