mirror of
https://github.com/aiday-mar/code-style-keys.git
synced 2026-07-22 07:46:32 +00:00
24 lines
No EOL
483 B
JSON
24 lines
No EOL
483 B
JSON
{
|
|
"compilerOptions": {
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "Node16",
|
|
"target": "ES2021",
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"moduleResolution": "node16",
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"lib": [
|
|
"ES2021",
|
|
"DOM"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
]
|
|
} |