2020-09-17 10:39:25 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"lib": ["es2015", "es5", "dom"],
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es2015",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
|
|
|
"outDir": "./lib/",
|
|
|
|
|
|
|
|
"declaration": true,
|
|
|
|
|
|
|
|
"preserveSymlinks": true,
|
|
|
|
|
|
|
|
"preserveWatchOutput": true,
|
|
|
|
"pretty": false,
|
|
|
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true
|
|
|
|
},
|
|
|
|
"include": [
|
2020-09-21 08:14:06 +03:00
|
|
|
"./thirdparty.d.ts",
|
2020-09-17 10:39:25 +03:00
|
|
|
"./src.ts/*.ts",
|
|
|
|
"./src.ts/cmds/*.ts"
|
|
|
|
],
|
|
|
|
"exclude": [ ]
|
|
|
|
}
|