squiggle/packages/squiggle-lang/tsconfig.json
2022-08-29 12:50:51 +10:00

20 lines
447 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"jsx": "react",
"allowJs": true,
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true,
"strict": true,
"outDir": "./dist",
"declarationDir": "./dist",
"declaration": true,
"composite": true,
"target": "ES6"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "**/*.spec.ts", "webpack.config.js"]
}