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,
|
2020-07-27 00:53:09 +09:00
|
|
|
"module": "CommonJS",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"newLine": "LF",
|
|
|
|
"noEmitHelpers": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"strict": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
|
|
"suppressExcessPropertyErrors": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"preserveSymlinks": true,
|
2020-11-04 16:54:50 +09:00
|
|
|
"target": "ES2015",
|
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",
|
2020-09-02 00:20:55 +09:00
|
|
|
"lib": ["dom", "DOM.Iterable", "ES2019", "ES2020", "esnext"]
|
2020-07-27 00:53:09 +09:00
|
|
|
},
|
2021-11-19 15:58:21 +09:00
|
|
|
"include": ["."],
|
|
|
|
"exclude": ["node_modules", "bench", "cli/scripts", "scripts"]
|
2020-07-27 00:53:09 +09:00
|
|
|
}
|