debug
This commit is contained in:
parent
ef63ea067e
commit
933ba14510
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,8 +1,11 @@
|
|||
{
|
||||
"$schema": "https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/package.json",
|
||||
"name": "sdk",
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"type": "module",
|
||||
"main": "./src/main.ts",
|
||||
"types": "./src/main.ts",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build-pkg": "tsc -p ./tsconfig.build.json && vite build",
|
||||
|
|
|
@ -2,7 +2,11 @@
|
|||
"compilerOptions": {
|
||||
"target": "ES2020",
|
||||
"useDefineForClassFields": true,
|
||||
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||||
"lib": [
|
||||
"ES2020",
|
||||
"DOM",
|
||||
"DOM.Iterable"
|
||||
],
|
||||
"composite": true,
|
||||
"module": "ESNext",
|
||||
"skipLibCheck": true,
|
||||
|
@ -15,6 +19,7 @@
|
|||
"jsx": "react-jsx",
|
||||
/* Linting */
|
||||
"strict": true,
|
||||
"outDir": "./dist",
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
|
@ -23,13 +28,17 @@
|
|||
// "@/*": ["src/*"],
|
||||
// "@/styles/*": ["styles/*"],
|
||||
// },
|
||||
"typeRoots": ["src/vite-env.d.ts"]
|
||||
"typeRoots": [
|
||||
"src/vite-env.d.ts"
|
||||
]
|
||||
},
|
||||
"include": [
|
||||
"./src/**/*",
|
||||
// "./src/components/lume/LumeDashboard/LumeDashboard."
|
||||
],
|
||||
"exclude": ["**/*.stories.tsx"],
|
||||
"exclude": [
|
||||
"**/*.stories.tsx"
|
||||
],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.node.json"
|
||||
|
|
Loading…
Reference in New Issue