mirror of
https://github.com/binxly/Atomizer.git
synced 2026-07-22 11:30:28 +00:00
29 lines
558 B
JSON
29 lines
558 B
JSON
{
|
|
"compilerOptions": {
|
|
// Language and Environment
|
|
"lib": ["DOM", "ESNext"],
|
|
"target": "ES2018",
|
|
|
|
// Modules
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
|
|
// Emit
|
|
"noEmit": true,
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
|
|
// Type Checking
|
|
"strict": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
// Completeness
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["**/*.ts"]
|
|
}
|