2021-01-27 08:45:18 +03:00
|
|
|
{
|
2021-11-09 03:43:22 +03:00
|
|
|
"include": ["src/**/*.ts"],
|
2021-11-11 02:54:31 +03:00
|
|
|
"exclude": ["node_modules", "dist", "tmp"],
|
2021-01-27 08:45:18 +03:00
|
|
|
"compilerOptions": {
|
2021-11-11 02:54:31 +03:00
|
|
|
"outDir": "./tmp",
|
2021-02-25 06:58:32 +03:00
|
|
|
"module": "ESNext",
|
|
|
|
"target": "ESNext",
|
2021-11-09 03:43:22 +03:00
|
|
|
"lib": ["ESNext", "DOM"],
|
2021-01-27 08:45:18 +03:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"declaration": true,
|
|
|
|
"sourceMap": true,
|
2021-02-25 06:58:32 +03:00
|
|
|
"strict": false,
|
2021-11-09 03:43:22 +03:00
|
|
|
"pretty": true,
|
|
|
|
"noImplicitAny": true,
|
2021-02-25 06:58:32 +03:00
|
|
|
"noErrorTruncation": true,
|
|
|
|
"allowJs": true,
|
2021-04-22 17:17:39 +03:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
2021-11-09 03:43:22 +03:00
|
|
|
"*": ["./node_modules/@types/*", "*"]
|
2021-04-22 17:17:39 +03:00
|
|
|
}
|
2021-01-27 08:45:18 +03:00
|
|
|
}
|
2021-06-08 07:25:43 +03:00
|
|
|
}
|