first commit
This commit is contained in:
22
tsconfig.json
Normal file
22
tsconfig.json
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
|
||||
// Treat files as modules even if it doesn't use import/export
|
||||
"moduleDetection": "force",
|
||||
|
||||
// Ignore module structure
|
||||
"module": "Preserve",
|
||||
|
||||
// Allow JSON modules to be imported
|
||||
"resolveJsonModule": true,
|
||||
|
||||
// Allow JS files to be imported from TS and vice versa
|
||||
"allowJs": true,
|
||||
|
||||
// Use correct ESM import behavior
|
||||
"esModuleInterop": true,
|
||||
|
||||
// Disallow features that require cross-file awareness
|
||||
"isolatedModules": true,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user