2022-02-27 04:41:30 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-03-24 23:27:17 +00:00
|
|
|
"paths": {
|
|
|
|
"@quri/squiggle-lang": ["../squiggle-lang/src/js"]
|
|
|
|
},
|
2022-02-27 04:41:30 +00:00
|
|
|
"module": "commonjs",
|
2022-04-01 02:16:06 +00:00
|
|
|
"jsx": "react",
|
2022-04-12 05:41:36 +00:00
|
|
|
"skipLibCheck": true,
|
2022-03-21 23:40:14 +00:00
|
|
|
"resolveJsonModule": true,
|
2022-02-27 04:41:30 +00:00
|
|
|
"noImplicitAny": false,
|
2022-03-02 23:22:26 +00:00
|
|
|
"esModuleInterop": true,
|
2022-02-27 04:41:30 +00:00
|
|
|
"removeComments": true,
|
2022-04-12 05:41:36 +00:00
|
|
|
"strict": true,
|
2022-02-27 04:41:30 +00:00
|
|
|
"preserveConstEnums": true,
|
2022-03-24 23:27:17 +00:00
|
|
|
"composite": true,
|
2022-02-27 04:41:30 +00:00
|
|
|
"outDir": "./dist",
|
|
|
|
"declarationDir": "./dist",
|
|
|
|
"declaration": true,
|
|
|
|
"sourceMap": true
|
|
|
|
},
|
2022-04-12 05:41:36 +00:00
|
|
|
"files": [
|
|
|
|
"src/vega-specs/spec-distributions.json",
|
2022-05-26 18:41:58 +00:00
|
|
|
"src/vega-specs/spec-percentiles.json",
|
|
|
|
"src/vega-specs/spec-line-chart.json"
|
2022-04-12 05:41:36 +00:00
|
|
|
],
|
2022-02-27 04:41:30 +00:00
|
|
|
"target": "ES6",
|
2022-03-24 23:27:17 +00:00
|
|
|
"include": ["src/**/*", "src/*"],
|
2022-04-04 06:58:05 +00:00
|
|
|
"exclude": ["node_modules", "**/*.spec.ts", "webpack.config.js"],
|
2022-03-24 23:27:17 +00:00
|
|
|
"references": [
|
|
|
|
{
|
|
|
|
"path": "../squiggle-lang"
|
|
|
|
}
|
|
|
|
]
|
2022-02-27 04:41:30 +00:00
|
|
|
}
|