2017-09-02 01:50:31 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-01-03 17:38:17 +00:00
|
|
|
"target": "es2017",
|
2017-09-02 01:50:31 +00:00
|
|
|
"module": "commonjs",
|
|
|
|
"sourceMap": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"noEmitHelpers": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
|
|
"noUnusedLocals": true,
|
2020-04-19 17:06:50 +00:00
|
|
|
"noUnusedParameters": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2024-07-07 00:30:34 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipDefaultLibCheck": true,
|
|
|
|
"skipLibCheck": true
|
2017-09-02 01:50:31 +00:00
|
|
|
},
|
2018-03-04 02:32:26 +00:00
|
|
|
"include": ["main.ts"]
|
2020-04-19 17:06:50 +00:00
|
|
|
}
|