lightweight-charts/tsconfig.options.json
Evgeniy Timokhov 586512ecb6 Changed target of TypeScript compilation to es2016
Partially addressed to #745
2022-03-03 09:45:37 +00:00

33 lines
627 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"importHelpers": true,
"lib": [
"dom",
"es2016"
],
"module": "esnext",
"moduleResolution": "node",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"preserveConstEnums": true,
"resolveJsonModule": true,
"rootDir": "./",
"strict": true,
"stripInternal": false,
"target": "es2016",
"typeRoots": [
"./src/typings",
"node_modules/@types"
],
"types": [
"_global-types",
"dom-not-standarted"
]
}
}