Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sven-hash committed Jan 5, 2025
1 parent da00ad8 commit 6e8e03e
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions appv2/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"strict": true,
"skipLibCheck": true,
"outDir": "./dist",
"target": "es2020",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"moduleResolution": "node",
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
},
"plugins": [
{
"name": "next"
}
]
},
"include": [
"next-env.d.ts",
".next/types/**/*.ts",
"**/*.ts",
"**/*.tsx",
"src/**/*.ts",
"test/**/*.ts",
"scripts/**/*.ts",
"alephium.config.ts",
"artifacts/**/*.ts"
"next-env.d.ts",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
Expand Down

0 comments on commit 6e8e03e

Please sign in to comment.