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