mirror of
https://github.com/EnixCoda/Gitako.git
synced 2026-03-11 08:54:44 +00:00
15 lines
402 B
JSON
15 lines
402 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "Node",
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"strict": true,
|
|
"lib": ["dom", "es2017.object", "es2016", "ES2019.Array", "ES2020.String", "ES2022.Error"],
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true
|
|
},
|
|
"include": ["./**/*.ts"]
|
|
}
|