summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-02-23 16:46:10 -0700
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-02-23 17:04:54 -0700
commitd0d6aae1e56428f597f69f5c9cfb261afe671f5d (patch)
treeef1d572f2bda148ef1d13602b6b4117be8e18aa4 /tsconfig.json
downloadcps-interpreter-d0d6aae1e56428f597f69f5c9cfb261afe671f5d.tar.gz
cps-interpreter-d0d6aae1e56428f597f69f5c9cfb261afe671f5d.zip
initial parser
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json27
1 files changed, 27 insertions, 0 deletions
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/*"]
+ }
+ }
+}