From d0d6aae1e56428f597f69f5c9cfb261afe671f5d Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Fri, 23 Feb 2024 16:46:10 -0700 Subject: initial parser --- tsconfig.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 tsconfig.json (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..544b2b5 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compilerOptions": { + "lib": ["ESNext"], + "target": "ESNext", + "module": "ESNext", + "moduleDetection": "force", + "jsx": "react-jsx", + "allowJs": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "noEmit": true, + + /* Linting */ + "skipLibCheck": true, + "strict": true, + "noFallthroughCasesInSwitch": true, + "forceConsistentCasingInFileNames": true, + + "paths": { + "@/*": ["./src/*"], + "@t/*": ["./test/*"] + } + } +} -- cgit v1.2.3-70-g09d2