mirror of
https://github.com/sbuffkin/hexmaker.git
synced 2026-07-22 06:14:01 +00:00
18 lines
476 B
JSON
18 lines
476 B
JSON
{
|
|
"compilerOptions": {
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2020",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "bundler",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": false,
|
|
"lib": ["DOM", "ES2020"],
|
|
},
|
|
"include": ["**/*.ts", "eslint.config.js"],
|
|
"exclude": ["tests/**", "node_modules", "*.mjs"],
|
|
}
|