Skip to content

Commit

Permalink
Merge pull request #3 from ir-engine/type-module-vite-node-test
Browse files Browse the repository at this point in the history
type module vite node test
  • Loading branch information
HexaField authored Oct 10, 2024
2 parents 7f98616 + 70c7b9a commit b32cd60
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 158 deletions.
44 changes: 0 additions & 44 deletions .mocharc.js

This file was deleted.

32 changes: 0 additions & 32 deletions tests/mocha.env.js

This file was deleted.

59 changes: 0 additions & 59 deletions tests/setup.js

This file was deleted.

38 changes: 15 additions & 23 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,43 +1,35 @@
{
"compilerOptions": {
"target": "esnext",
"lib": [
"esnext",
"dom",
"dom.iterable",
"WebWorker"
],
"allowJs": true,
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"module": "CommonJS",
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"strict": false,
"strictNullChecks": true,
"strictBindCallApply": true,
"noImplicitAny": false,
"resolveJsonModule": true,
"esModuleInterop": true,
"moduleResolution": "node",
"sourceMap": true,
"jsx": "react",
"isolatedModules": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"declaration": true,
"outDir": "./lib",
"types": ["vite/client", "mocha", "@types/offscreencanvas"]
"declaration": false,
"types": ["@types/node"]
},
"exclude": [
"**/node_modules/**",
"./tests/**/*.ts"
],
"include": [
"../../../../../__global.d.ts",
"../../../../server-core/src/*",
"../../../../client-core/src/*",
"./**/*.ts",
"./**/*.tsx"
"../../../../client-core/src/",
"../../../../server-core/src/",
"./src"
]
}

0 comments on commit b32cd60

Please sign in to comment.