2021-01-27 08:45:18 +03:00
|
|
|
{
|
2021-02-25 06:58:32 +03:00
|
|
|
"include": ["src/*.ts"],
|
2021-01-27 08:45:18 +03:00
|
|
|
"exclude": ["node_modules", "dist", "@types"],
|
|
|
|
"compilerOptions": {
|
2021-02-25 06:58:32 +03:00
|
|
|
"outDir": "./dist",
|
|
|
|
"module": "ESNext",
|
2021-01-27 08:45:18 +03:00
|
|
|
"noImplicitAny": true,
|
2021-02-25 06:58:32 +03:00
|
|
|
"target": "ESNext",
|
2021-01-27 08:45:18 +03:00
|
|
|
"pretty": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"declaration": true,
|
|
|
|
"sourceMap": true,
|
2021-02-25 06:58:32 +03:00
|
|
|
"strict": false,
|
|
|
|
"noErrorTruncation": true,
|
|
|
|
"allowJs": true,
|
2021-01-27 08:45:18 +03:00
|
|
|
}
|
|
|
|
}
|