2020-07-27 00:53:09 +09:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"declaration": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"importHelpers": true,
|
2020-08-24 19:01:55 +09:00
|
|
|
"allowJs": true,
|
2023-04-06 12:04:53 +09:00
|
|
|
"module": "NodeNext",
|
|
|
|
"moduleResolution": "nodenext",
|
2020-07-27 00:53:09 +09:00
|
|
|
"newLine": "LF",
|
|
|
|
"noEmitHelpers": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"strict": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"preserveSymlinks": true,
|
2023-04-06 12:04:53 +09:00
|
|
|
"target": "ES2022",
|
2020-07-27 00:53:09 +09:00
|
|
|
"sourceMap": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"stripInternal": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"importsNotUsedAsValues": "remove",
|
2021-11-19 15:58:21 +09:00
|
|
|
"outDir": "scripts",
|
2023-04-06 12:04:53 +09:00
|
|
|
"lib": ["ES2022"]
|
2020-07-27 00:53:09 +09:00
|
|
|
},
|
2021-11-19 15:58:21 +09:00
|
|
|
"include": ["."],
|
2022-12-09 19:56:50 +09:00
|
|
|
"exclude": ["node_modules", "bench", "cli/scripts", "scripts", "target"]
|
2020-07-27 00:53:09 +09:00
|
|
|
}
|