This commit is contained in:
2026-03-15 15:09:36 +09:00
parent a457a80bfe
commit f4df35b344
18 changed files with 149 additions and 430 deletions

View File

@@ -1,26 +1,21 @@
{
"compilerOptions": {
"target": "ES2022",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": ["vite/client"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": false,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["src"]
}
"compilerOptions": {
"target": "ES5",
"module": "ESNext",
"rootDir": "./src",
"outDir": "./dist",
"strict": true,
"moduleResolution": "Bundler",
"sourceMap": true,
"lib": [
"DOM",
"ES2017"
],
"downlevelIteration": true,
"skipLibCheck": true,
"verbatimModuleSyntax": true
},
"include": [
"src/**/*"
]
}