feat: create content layout with emotion

This commit is contained in:
Sonny
2024-04-27 20:00:46 +02:00
committed by Sonny
parent df4185bd62
commit 08dcd7455f
23 changed files with 630 additions and 52 deletions

View File

@@ -2,11 +2,17 @@
"extends": "@adonisjs/tsconfig/tsconfig.client.json",
"compilerOptions": {
"baseUrl": ".",
"lib": ["DOM", "ESNext", "DOM.Iterable", "ES2020"],
"jsxImportSource": "@emotion/react",
"module": "ESNext",
"moduleResolution": "Bundler",
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"paths": {
"~/*": ["./*"]
}
},
"types": ["vite/client", "@emotion/styled", "@emotion/react"]
},
"include": ["./**/*.ts", "./**/*.tsx"]
}