squiggle/packages/squiggle-lang/tsconfig.json
2022-09-19 22:00:01 +04:00

21 lines
476 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",
"esModuleInterop": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "**/*.spec.ts", "webpack.config.js"]
}