Skip to content

Commit

Permalink
types
Browse files Browse the repository at this point in the history
  • Loading branch information
HexaField committed Sep 24, 2024
1 parent c29aded commit 154d26b
Showing 1 changed file with 13 additions and 25 deletions.
38 changes: 13 additions & 25 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,30 @@
{
"compilerOptions": {
"target": "esnext",
"lib": [
"esnext",
"dom",
"dom.iterable"
],
"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": "./dist",
"types": ["vite/client"]
"declaration": false,
"types": ["@types/node"]
},
"exclude": [
"../projects/projects/**",
"**/node_modules/**"
],
"include": [
"../../../../../__global.d.ts",
"../../../../server-core/src/*",
"../../../../client-core/src/*",
"./**/*.ts",
"./**/*.tsx"
]
"include": ["../../../../../__global.d.ts", "../../../../", "./src", "./index.ts"]
}

0 comments on commit 154d26b

Please sign in to comment.