move index.ts next to index.html
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Umbraco</title>
|
||||
<script src="/node_modules/msw/lib/iife/index.js"></script>
|
||||
<script type="module" src="/src/index.ts"></script>
|
||||
<script type="module" src="index.ts"></script>
|
||||
<base href="/" />
|
||||
</head>
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { UmbAppElement } from './app/app.element';
|
||||
import { startMockServiceWorker } from './core/mocks';
|
||||
import { UmbAppElement } from './src/app/app.element';
|
||||
import { startMockServiceWorker } from './src/core/mocks';
|
||||
|
||||
if (import.meta.env.VITE_UMBRACO_USE_MSW === 'on') {
|
||||
startMockServiceWorker();
|
||||
@@ -57,7 +57,7 @@
|
||||
"@umbraco-cms/internal/test-utils": ["utils/test-utils.ts"]
|
||||
}
|
||||
},
|
||||
"include": ["src/**/*.ts", "apps/**/*.ts", "libs/**/*.ts", "e2e/**/*.ts"],
|
||||
"include": ["src/**/*.ts", "apps/**/*.ts", "libs/**/*.ts", "e2e/**/*.ts", "index.ts"],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.node.json"
|
||||
|
||||
Reference in New Issue
Block a user