first commit
This commit is contained in:
25
tsconfig.json
Normal file
25
tsconfig.json
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
/* Base Options: */
|
||||
"esModuleInterop": true,
|
||||
"skipLibCheck": true,
|
||||
"target": "es2023",
|
||||
"allowJs": true,
|
||||
"resolveJsonModule": true,
|
||||
"moduleDetection": "force",
|
||||
"isolatedModules": true,
|
||||
"verbatimModuleSyntax": true,
|
||||
/* Strictness */
|
||||
"strict": true,
|
||||
"noUncheckedIndexedAccess": true,
|
||||
"noImplicitOverride": true,
|
||||
/* AND if you're building for a library: */
|
||||
"declaration": true,
|
||||
"declarationMap": true,
|
||||
/* If NOT transpiling with TypeScript: */
|
||||
"module": "preserve",
|
||||
"noEmit": true,
|
||||
/* If your code doesn't run in the DOM: */
|
||||
"lib": ["es2023", "esnext.typedarrays"]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user