feat(challenge23): test harnesses

This commit is contained in:
thomas
2023-06-06 09:54:00 +02:00
parent b61028c744
commit 8ad3448be0
20 changed files with 483 additions and 1 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: [],
};