aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authormihailo.vojinovic <mihailonvojinovic@gmail.com>2026-02-04 13:57:50 +0100
committermihailo.vojinovic <mihailonvojinovic@gmail.com>2026-02-04 13:57:50 +0100
commita7ba174c05e9743c03cdcdb26a5c196699939fc5 (patch)
treedacdb80c3649643266e9341829dd45b2b68a9a83 /tsconfig.json
downloadinvoice-a7ba174c05e9743c03cdcdb26a5c196699939fc5.tar.gz
invoice-a7ba174c05e9743c03cdcdb26a5c196699939fc5.zip
Initial commit from Create Next App
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json34
1 files changed, 34 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..cf9c65d
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,34 @@
+{
+ "compilerOptions": {
+ "target": "ES2017",
+ "lib": ["dom", "dom.iterable", "esnext"],
+ "allowJs": true,
+ "skipLibCheck": true,
+ "strict": true,
+ "noEmit": true,
+ "esModuleInterop": true,
+ "module": "esnext",
+ "moduleResolution": "bundler",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "jsx": "react-jsx",
+ "incremental": true,
+ "plugins": [
+ {
+ "name": "next"
+ }
+ ],
+ "paths": {
+ "@/*": ["./src/*"]
+ }
+ },
+ "include": [
+ "next-env.d.ts",
+ "**/*.ts",
+ "**/*.tsx",
+ ".next/types/**/*.ts",
+ ".next/dev/types/**/*.ts",
+ "**/*.mts"
+ ],
+ "exclude": ["node_modules"]
+}