2019-11-19 03:18:28 +01:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2021-02-09 18:00:00 +01:00
|
|
|
"target": "es2018",
|
2019-11-19 03:18:28 +01:00
|
|
|
"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,
|
2021-02-11 15:36:15 +01:00
|
|
|
"esModuleInterop": 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,
|
2021-02-13 03:53:46 +01:00
|
|
|
"jsx": "react",
|
|
|
|
|
"downlevelIteration": true,
|
2019-11-19 03:18:28 +01:00
|
|
|
},
|
|
|
|
|
"compileOnSave": true,
|
2020-12-01 01:31:40 +01:00
|
|
|
"include": ["src/**/*.ts", "src/**/*.js"],
|
2021-02-06 01:19:09 +01:00
|
|
|
"exclude": ["node_modules", "src/.eslintrc.js", "src/web/**", "src/**/*webpack.config.js"]
|
2019-11-19 03:18:28 +01:00
|
|
|
}
|