@sir_wernich/taco-wrap
Version:
Takes a string and wraps it in taco emojis
26 lines (25 loc) • 660 B
JSON
{
"compilerOptions": {
"target": "es5",
"module": "CommonJS",
"declaration": true,
"sourceMap": true,
"rootDir": "src",
"outDir": "dist",
"removeComments": true,
"strict": true,
"noImplicitAny": true,
"baseUrl": ".",
"lib": [
"es2019"
],
"paths": {
"~/*": ["src/*"]
},
"types": ["node", "jest"],
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"exclude": ["bin", "dist", "node_modules", "tests", "**/*.spec.ts"]
}