mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
21 lines
361 B
JSON
21 lines
361 B
JSON
|
{
|
||
|
"$schema": "https://json.schemastore.org/tsconfig",
|
||
|
"compilerOptions": {
|
||
|
"target": "ESNext",
|
||
|
"module": "ESNext",
|
||
|
"moduleResolution": "nodenext",
|
||
|
"strict": true,
|
||
|
"strictFunctionTypes": true,
|
||
|
"strictNullChecks": true,
|
||
|
"esModuleInterop": true,
|
||
|
"lib": [
|
||
|
"esnext",
|
||
|
]
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*.ts",
|
||
|
"built/**/*.ts"
|
||
|
],
|
||
|
"exclude": []
|
||
|
}
|