diff options
| -rw-r--r-- | tsconfig.build.json | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/tsconfig.build.json b/tsconfig.build.json new file mode 100644 index 0000000..327ef46 --- /dev/null +++ b/tsconfig.build.json @@ -0,0 +1,36 @@ +{ + "compilerOptions": { + "target": "ES2020", + "lib": [ + "ES2020", + "DOM", + "DOM.Iterable" + ], + "module": "ESNext", + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", + "skipLibCheck": true, + // shadcn + "baseUrl": ".", + "paths": { + "@/*": [ + "./src/*" + ] + }, + + "useDefineForClassFields": true, + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "isolatedModules": true, + "moduleDetection": "force", + "noEmit": true, + "jsx": "react-jsx" + + /* Linting */ + // "strict": true, + // "noUnusedLocals": true, + // "noUnusedParameters": true, + // "noFallthroughCasesInSwitch": true, + // "noUncheckedSideEffectImports": true, + } +} |
