Skip to content

Commit c1e582f

Browse files
authored
Configuração do TypeScript
1 parent a78fd92 commit c1e582f

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

tsconfig.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ESNext",
4+
"module": "ESNext",
5+
"moduleResolution": "bundler",
6+
"types": ["bun"],
7+
"strict": true,
8+
"skipLibCheck": true,
9+
"allowImportingTsExtensions": true,
10+
"noEmit": true,
11+
"esModuleInterop": true,
12+
"forceConsistentCasingInFileNames": true,
13+
"noUnusedLocals": false,
14+
"noUnusedParameters": false
15+
},
16+
"include": ["src/**/*"]
17+
}

0 commit comments

Comments
 (0)