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