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': {
node: {
paths: ['src'],
paths: ['src-web'],
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
},

View File

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

View File

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

View File

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

View File

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

View File

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