fchat-rising/tsconfig.json

19 lines
449 B
JSON
Raw Permalink Normal View History

2019-06-07 19:31:42 +00:00
{
"compilerOptions": {
"target": "es2017",
"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-06 03:38:57 +00:00
"esModuleInterop": true,
2024-07-07 00:30:34 +00:00
"experimentalDecorators": true,
2019-06-07 19:31:42 +00:00
},
"include": ["./electron/main.ts"]
2020-04-19 17:06:50 +00:00
}