is/tsconfig.json

34 lines
667 B
JSON
Raw Normal View History

2017-11-06 16:26:59 +01:00
{
2017-11-06 22:36:51 +07:00
"compilerOptions": {
2017-11-07 10:23:00 +07:00
"outDir": "dist",
2018-05-19 15:42:12 +07:00
"target": "es2016",
2018-04-03 19:05:59 +02:00
"lib": [
2018-05-19 15:42:12 +07:00
"es2016",
2018-07-09 20:35:16 +03:00
"es2017.sharedmemory",
"esnext.asynciterable",
"dom"
2018-04-03 19:05:59 +02:00
],
2018-05-19 15:42:12 +07:00
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"declaration": true,
"pretty": true,
"newLine": "lf",
2017-11-07 10:23:00 +07:00
"stripInternal": true,
"strict": true,
2017-11-07 10:23:00 +07:00
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
2018-05-19 15:42:12 +07:00
"noEmitOnError": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
2017-11-07 10:23:00 +07:00
},
"exclude": [
"node_modules",
"dist"
]
2017-11-06 16:26:59 +01:00
}