fchat-rising/electron/tsconfig-renderer.json

21 lines
525 B
JSON
Raw Normal View History

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,
"experimentalDecorators": true,
"allowJs": true,
"noEmitHelpers": true,
"importHelpers": true,
"strict": true,
2019-09-17 17:14:14 +00:00
"forceConsistentCasingInFileNames": true,
2017-09-02 01:50:31 +00:00
"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
},
"include": ["chat.ts", "window.ts", "../**/*.d.ts"]
2020-04-19 17:06:50 +00:00
}