@nevware21/ts-utils
Version:
Comprehensive TypeScript/JavaScript utility library with cross-environment support (Node.js, browser, web worker) providing helper functions, polyfills (ES5-ES2023), type checking utilities, and optimized implementations for better minification and code r
25 lines • 648 B
JSON
{
"compilerOptions": {
"sourceMap": true,
"inlineSources": true,
"noImplicitAny": true,
"module": "es6",
"moduleResolution": "node",
"target": "es5",
"lib": ["ES2015", "DOM"],
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"noEmitHelpers": false,
"alwaysStrict": true,
"declaration": false,
"outDir": "./build/base",
"allowSyntheticDefaultImports": true,
"removeComments": false
},
"include": [
"./src/**/*.ts"
],
"exclude": [
"node_modules/"
]
}