squiggle/packages/components/tsconfig.json

35 lines
817 B
JSON
Raw Permalink Normal View History

2022-02-27 04:41:30 +00:00
{
"compilerOptions": {
"paths": {
"@quri/squiggle-lang": ["../squiggle-lang/src/js"]
},
2022-02-27 04:41:30 +00:00
"module": "commonjs",
"jsx": "react",
"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,
"strict": true,
2022-02-27 04:41:30 +00:00
"preserveConstEnums": true,
"composite": true,
2022-02-27 04:41:30 +00:00
"outDir": "./dist",
"declarationDir": "./dist",
"declaration": true,
"sourceMap": true
},
"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-02-27 04:41:30 +00:00
"target": "ES6",
"include": ["src/**/*", "src/*"],
2022-04-04 06:58:05 +00:00
"exclude": ["node_modules", "**/*.spec.ts", "webpack.config.js"],
"references": [
{
"path": "../squiggle-lang"
}
]
2022-02-27 04:41:30 +00:00
}