fleet/ee/fleetd-chrome/tsconfig.json

24 lines
507 B
JSON
Raw Normal View History

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "react",
"lib": [
"es2020",
"dom"
],
"module": "es2020",
"moduleResolution": "node",
"outDir": "dist/js",
"rootDir": "src",
"sourceMap": true,
"target": "es2015"
},
"exclude": [
"node_modules",
"jest.config.js",
"jest.setup.ts",
"jsdomwithfetch.ts"
],
}