faex/tsconfig.json
2024-08-08 14:12:51 +02:00

24 lines
719 B
JSON

{
"compilerOptions": {
"strict": true,
"target": "es6",
"moduleResolution": "bundler",
"module": "ES6",
"esModuleInterop": true,
"sourceMap": false,
"rootDir": "src",
"outDir": "dist/js",
"noEmitOnError": true,
"jsx": "react",
"typeRoots": [ "node_modules/@types" ],
"types": [
// Support for: https://www.npmjs.com/package/@types/chrome
// Run: `npm install --save @types/chrome`
// More info: https://stackoverflow.com/a/40826789/2085356
"chrome",
// Support for Jest
// Run: `npm i --save-dev @types/jest`
"jest",
]
}
}