Files
hexerade/tsconfig.json
T
2026-06-03 19:48:13 -04:00

25 lines
535 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "esnext",
"moduleResolution": "bundler",
"forceConsistentCasingInFileNames": false,
"inlineSourceMap": true,
"outDir": "./dist",
"rootDir": "./src",
"noImplicitAny": false,
"noUnusedLocals": true,
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"lib": [
"ES2021.String"
]
},
"include": ["src"],
"exclude": ["node_modules"],
"tsc-alias": {
"resolveFullPaths": true,
"verbose": false
}
}