feat(challenge24): create test harness

This commit is contained in:
thomas
2023-06-11 22:05:48 +02:00
parent 810094400f
commit 58a6632552
20 changed files with 402 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: [],
};