mirror of
https://github.com/avinal/sciezka.git
synced 2026-07-03 23:30:09 +05:30
18 lines
408 B
JSON
18 lines
408 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"strict": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"outDir": "dist",
|
||
|
|
"rootDir": "src",
|
||
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"]
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts"]
|
||
|
|
}
|