coc-tsserver/tsconfig.json

28 lines
715 B
JSON
Raw Normal View History

2018-09-07 21:40:51 +09:00
{
"compilerOptions": {
"experimentalDecorators": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"strictNullChecks": false,
"strictFunctionTypes": false,
"allowUnreachableCode": true,
"allowUnusedLabels": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": false,
"noImplicitReturns": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"strictPropertyInitialization": false,
2019-06-20 08:36:12 +09:00
"declaration": false,
2018-09-07 21:40:51 +09:00
"outDir": "lib",
"target": "es2017",
2018-09-07 21:40:51 +09:00
"module": "commonjs",
"moduleResolution": "node",
"noImplicitThis": true,
"lib": ["ES2018", "ES2019"],
2018-09-07 21:40:51 +09:00
"plugins": []
},
2019-06-20 08:36:12 +09:00
"include": ["src"],
"exclude": []
2018-09-07 21:40:51 +09:00
}