2019-11-19 03:18:28 +01:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ESNext",
|
|
|
|
|
"module": "commonjs",
|
2020-05-07 22:36:54 +02:00
|
|
|
"lib": ["esnext", "dom", "DOM.Iterable"],
|
2020-09-26 00:25:54 +02:00
|
|
|
"sourceMap": true,
|
2019-11-19 03:18:28 +01:00
|
|
|
"rootDir": "./src",
|
2019-12-05 02:58:38 +01:00
|
|
|
"outDir": "./lib",
|
2020-01-14 07:08:35 +01:00
|
|
|
"strict": true,
|
2020-12-01 01:31:40 +01:00
|
|
|
"allowJs": true,
|
2021-01-08 01:15:34 +01:00
|
|
|
"declaration": false,
|
|
|
|
|
"jsx": "react"
|
2019-11-19 03:18:28 +01:00
|
|
|
},
|
|
|
|
|
"compileOnSave": true,
|
2020-12-01 01:31:40 +01:00
|
|
|
"include": ["src/**/*.ts", "src/**/*.js"],
|
2021-01-08 01:15:34 +01:00
|
|
|
"exclude": ["node_modules", "src/.eslintrc.js", "src/cli/traceViewer/web/**"]
|
2019-11-19 03:18:28 +01:00
|
|
|
}
|