2019-02-10 10:25:01 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"sourceMap": true,
|
|
|
|
"inlineSources": true,
|
2020-03-06 02:20:56 +03:00
|
|
|
"noImplicitAny": true,
|
2019-02-10 10:25:01 +03:00
|
|
|
"module": "es6",
|
2022-05-20 19:05:46 +03:00
|
|
|
"target": "es5",
|
2019-02-10 10:25:01 +03:00
|
|
|
"moduleResolution": "Node",
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2021-04-15 23:43:41 +03:00
|
|
|
"importHelpers": true,
|
2019-02-10 10:25:01 +03:00
|
|
|
"noEmitHelpers": true,
|
2021-04-15 23:43:41 +03:00
|
|
|
"skipLibCheck": true,
|
2019-02-10 10:25:01 +03:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"declaration": true,
|
2021-03-20 04:51:13 +03:00
|
|
|
"declarationDir": "AISKU/types",
|
2019-02-10 10:25:01 +03:00
|
|
|
"outDir": "dist-esm",
|
2019-09-05 02:03:43 +03:00
|
|
|
"rootDir": "./AISKU/src"
|
2019-02-10 10:25:01 +03:00
|
|
|
},
|
|
|
|
"include": [
|
2019-09-07 02:56:14 +03:00
|
|
|
"src/**/*"
|
2019-02-10 10:25:01 +03:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
]
|
|
|
|
}
|