Files
flipper/desktop/tsconfig.base.json
Lorenzo Blasa 833e4f0422 Remove non-existent entry from tsconfig.json
Summary: ^

Reviewed By: aigoncharov

Differential Revision: D50304142

fbshipit-source-id: c1d0d06b30ebdf10b20341d926efbd6a8c8eaa63
2023-10-16 10:22:55 -07:00

36 lines
1.1 KiB
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": ["ES2021"],
"esModuleInterop": true,
"target": "ES2021",
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"jsx": "react",
"moduleResolution": "node",
"skipLibCheck": true,
"strict": true,
"useUnknownInCatchVariables": false,
"composite": true,
"incremental": true,
"baseUrl": ".",
"allowJs": true,
"rootDir": ".",
"paths": {
"flipper": ["./app/src/"],
"flipper-plugin": ["./flipper-plugin/src"],
"eslint-plugin-flipper": ["./eslint-plugin-flipper/src"],
"flipper-server-core": ["./flipper-server-core/src"],
"flipper-common": ["./flipper-common/src"],
"flipper-*": ["./*/src"]
},
// by default we don't include any @types, as to white list them specifically per project.
// this avoids hoised @types packages being shared by all projects implicitly
"types": []
},
"exclude": ["**/lib/", "**/dist/", "**/node_modules/", "**/__tests__/"]
}