2022-02-25 23:03:05 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2022-03-23 19:17:53 +00:00
|
|
|
"jsx": "react",
|
2022-02-25 23:03:05 +00:00
|
|
|
"allowJs": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "./dist",
|
|
|
|
"declarationDir": "./dist",
|
2022-03-24 23:27:17 +00:00
|
|
|
"declaration": true,
|
|
|
|
"composite": true
|
2022-02-25 23:03:05 +00:00
|
|
|
},
|
|
|
|
"target": "ES6",
|
|
|
|
"include": ["src/**/*"],
|
2022-03-21 23:40:14 +00:00
|
|
|
"exclude": ["node_modules", "**/*.spec.ts", "webpack.config.js"]
|
2022-02-25 23:03:05 +00:00
|
|
|
}
|