2022-02-27 04:41:30 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"jsx": "react",
|
2022-03-21 23:40:14 +00:00
|
|
|
"resolveJsonModule": true,
|
2022-02-27 04:41:30 +00:00
|
|
|
"noImplicitAny": false,
|
2022-03-02 23:22:26 +00:00
|
|
|
"esModuleInterop": true,
|
2022-02-27 04:41:30 +00:00
|
|
|
"removeComments": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"outDir": "./dist",
|
|
|
|
"declarationDir": "./dist",
|
|
|
|
"declaration": true,
|
|
|
|
"sourceMap": true
|
|
|
|
},
|
|
|
|
"target": "ES6",
|
|
|
|
"include": ["src/**/*"],
|
|
|
|
"exclude": ["node_modules", "**/*.spec.ts"]
|
|
|
|
}
|