openreplay/frontend/tsconfig.json
2021-07-06 17:24:12 +05:30

35 lines
No EOL
941 B
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"],
"Duck": ["./app/duck"],
"Duck/*": ["./app/duck/*"],
"Shared": ["./app/components/shared"],
"Shared/*": ["./app/components/shared/*"],
"Player": ["./app/player"],
"Player/*": ["./app/player/*"],
}
},
"exclude": [
"node_modules",
".storybook",
"scripts"
]
}