squiggle/packages/squiggle-lang/tsconfig.json

20 lines
447 B
JSON
Raw Normal View History

{
"compilerOptions": {
"module": "commonjs",
2022-03-23 19:17:53 +00:00
"jsx": "react",
"allowJs": true,
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true,
"strict": true,
"outDir": "./dist",
"declarationDir": "./dist",
"declaration": true,
2022-08-27 17:46:43 +00:00
"composite": true,
2022-08-29 02:50:51 +00:00
"target": "ES6"
},
"include": ["src/**/*"],
2022-03-21 23:40:14 +00:00
"exclude": ["node_modules", "**/*.spec.ts", "webpack.config.js"]
}