rsnext/packages/react-dev-overlay/tsconfig.json
Justin Goping ce4923c659
Integrate tsec into the linting process (#33746)
* Integrate tsec into the linting process

* Update tsec-exemptions.json
2022-02-24 16:59:18 -08:00

18 lines
433 B
JSON

{
"extends": "../../tsconfig-tsec.json",
"compilerOptions": {
"sourceMap": true,
"strict": true,
"esModuleInterop": true,
"target": "es3",
"lib": ["dom"],
"downlevelIteration": true,
"preserveWatchOutput": true,
"outDir": "lib",
"jsx": "react",
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true
},
"include": ["src/**/*.ts", "src/**/*.tsx"],
"exclude": ["node_modules"]
}