Better dir structure

This commit is contained in:
Gregory Schier
2023-02-18 20:30:39 -08:00
parent 51b6147445
commit bfa3418ee5
21 changed files with 8 additions and 6 deletions

View File

@@ -14,7 +14,7 @@ module.exports = {
}, },
'import/resolver': { 'import/resolver': {
node: { node: {
paths: ['src'], paths: ['src-web'],
extensions: ['.js', '.jsx', '.ts', '.tsx'], extensions: ['.js', '.jsx', '.ts', '.tsx'],
}, },
}, },

View File

@@ -10,6 +10,6 @@
<body> <body>
<div id="root"></div> <div id="root"></div>
<div id="radix-portal"></div> <div id="radix-portal"></div>
<script type="module" src="/src/main.tsx"></script> <script type="module" src="/src-web/main.tsx"></script>
</body> </body>
</html> </html>

View File

@@ -34,6 +34,6 @@ dir = "my-template"
#! 📦 -------- package: @rsw -------- #! 📦 -------- package: @rsw --------
[[crates]] [[crates]]
#! npm package name (path: $ROOT/@rsw) #! npm package name (path: $ROOT/@rsw)
name = "@rsw/hello" name = "src-wasm/hello"
#! run `npm link`: `true` | `false`, default is `false` #! run `npm link`: `true` | `false`, default is `false`
link = true link = true

View File

@@ -3,7 +3,7 @@ import ReactDOM from 'react-dom/client';
import App from './App'; import App from './App';
import { HelmetProvider } from 'react-helmet-async'; import { HelmetProvider } from 'react-helmet-async';
import { MotionConfig } from 'framer-motion'; import { MotionConfig } from 'framer-motion';
import init, { greet } from '@rsw/hello'; import init, { greet } from 'hello';
import './main.css'; import './main.css';

View File

@@ -2,7 +2,7 @@
module.exports = { module.exports = {
content: [ content: [
"./index.html", "./index.html",
"./src/**/*.{js,ts,jsx,tsx}", "./src-web/**/*.{js,ts,jsx,tsx}",
], ],
theme: { theme: {
extend: {}, extend: {},

View File

@@ -16,6 +16,8 @@
"noEmit": true, "noEmit": true,
"jsx": "react-jsx" "jsx": "react-jsx"
}, },
"include": ["src"], "include": [
"src-web"
],
"references": [{ "path": "./tsconfig.node.json" }] "references": [{ "path": "./tsconfig.node.json" }]
} }