PromucFlow_constructor/app/shared/ast/tsconfig.json
Ayangade Adeoluwa 3de00c6bf4
feat: Extraction of AST Logic (#15892)
* POC for Shared AST Logic using Yarn Symlinks

* fix: preinstall script for bundling shared packages

* Merge commit

* fix: updated the script to link, unlink the package as shared dep

* fix: updated dependencies

* Add a post-install script and fix yarn.lock file

* Remove commented code

* fix: added verification script, readme, moved scripts to shared

* Extraction of AST Logic into shared/ast folder

* Add jest test script

* Replace hardcoded ast Logic use with Shared AST module

* Replace parse code with getAST

Co-authored-by: Aman Agarwal <aman@appsmith.com>
2022-08-23 16:39:42 +05:30

38 lines
937 B
JSON

{
"compilerOptions": {
"target": "ES6",
"lib": [
"DOM",
"ES6",
"DOM.Iterable",
"ScriptHost",
"ES2016.Array.Include",
"es2020.string",
"esnext"
],
"strict": true,
"declaration": true,
"declarationDir": "build",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react",
"downlevelIteration": true,
"experimentalDecorators": true,
"importHelpers": true,
"typeRoots": ["./typings", "./node_modules/@types"],
"sourceMap": true,
"baseUrl": "./src",
"noFallthroughCasesInSwitch": true
},
"include": ["./src/**/*", "index.d.ts", "index.ts"],
"exclude": ["node_modules", "build"]
}