Files
framework/tsconfig.json
2026-03-15 15:09:36 +09:00

21 lines
447 B
JSON

{
"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/**/*"
]
}