mirror of
https://github.com/rhysd/Mstdn.git
synced 2024-11-28 20:24:10 +01:00
23 lines
486 B
JSON
23 lines
486 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noEmitOnError": true,
|
|
"strictNullChecks": true,
|
|
"target": "es2016",
|
|
"sourceMap": true
|
|
},
|
|
"include": [
|
|
"main/**/*.ts",
|
|
"renderer/**/*.ts",
|
|
"typings/**/*.d.ts"
|
|
]
|
|
}
|