2019-09-23 19:56:26 -07:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2020-03-23 11:18:29 -07:00
|
|
|
"target": "es2019",
|
|
|
|
|
"lib": [
|
|
|
|
|
"es2019",
|
|
|
|
|
"es2020.bigint",
|
|
|
|
|
"es2020.string",
|
|
|
|
|
"es2020.symbol.wellknown"
|
|
|
|
|
],
|
|
|
|
|
"module": "commonjs",
|
2020-04-24 11:53:29 -07:00
|
|
|
"outDir": ".out",
|
|
|
|
|
"tsBuildInfoFile": ".out/tsbuildinfo",
|
|
|
|
|
"incremental": true,
|
2020-03-23 11:18:29 -07:00
|
|
|
"rootDir": "./src",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"esModuleInterop": true,
|
2020-04-24 11:53:29 -07:00
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"resolveJsonModule": true
|
2019-09-23 19:56:26 -07:00
|
|
|
},
|
|
|
|
|
"exclude": ["node_modules", "**/*.test.ts"]
|
|
|
|
|
}
|