cherrypick/packages/cherrypick-js/generator/tsconfig.json
2023-12-05 17:10:53 +09:00

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": []
}