Add config to generate types Fix build error in install.ts after TypeScript upgrade Minor refactor in install.test.ts Add bugs, directories, files and types entries in package.json Update Node.js dependencies Update SECURITY.md
19 lines
No EOL
396 B
JSON
19 lines
No EOL
396 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"lib": [
|
|
"ES2020"
|
|
],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"outDir": "./lib",
|
|
"removeComments": true,
|
|
"rootDir": "./src",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "ES2019"
|
|
},
|
|
"exclude": ["__tests__", "lib", "node_modules"]
|
|
} |