feat(challenge 35): add challenge 35 about memoization

This commit is contained in:
thomas
2023-09-16 21:57:12 +02:00
parent c8fd152923
commit ea7eee2d4a
17 changed files with 355 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
const { createGlobPatternsForDependencies } = require('@nx/angular/tailwind');
const { join } = require('path');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
join(__dirname, 'src/**/!(*.stories|*.spec).{ts,html}'),
...createGlobPatternsForDependencies(__dirname),
],
theme: {
extend: {},
},
plugins: [],
};