2021-09-16 17:23:07 +07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-09-16 17:49:43 +07:00
|
|
|
"target": "es5",
|
|
|
|
"module": "commonjs",
|
2021-09-16 18:13:59 +07:00
|
|
|
"rootDir": "src",
|
2021-09-16 17:49:43 +07:00
|
|
|
"moduleResolution": "node",
|
2021-09-16 18:13:59 +07:00
|
|
|
"sourceMap": true,
|
2021-09-16 17:49:43 +07:00
|
|
|
"outDir": "dist",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
|
|
"lib": ["ES2015"],
|
|
|
|
"skipLibCheck": true,
|
2021-09-16 18:13:59 +07:00
|
|
|
"allowJs": true,
|
2021-09-16 18:17:48 +07:00
|
|
|
"declaration": true
|
2021-09-16 17:23:07 +07:00
|
|
|
},
|
2021-09-16 18:13:59 +07:00
|
|
|
"include": ["src/**/*"]
|
2021-09-16 18:17:48 +07:00
|
|
|
}
|