diff options
| author | Max Nanis | 2025-06-26 17:48:51 +0700 |
|---|---|---|
| committer | Max Nanis | 2025-06-26 17:48:51 +0700 |
| commit | 4df4ced87251b5d24621c36ac4f121295c7eb12b (patch) | |
| tree | 6dea8d0a2938bbe0d144d961525e10a26d756016 | |
| parent | 6043bd09c33cc89e39b2ad17ecc5f33eda67f10b (diff) | |
| download | panel-ui-4df4ced87251b5d24621c36ac4f121295c7eb12b.tar.gz panel-ui-4df4ced87251b5d24621c36ac4f121295c7eb12b.zip | |
tsconfig build
| -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, + } +} |
