chore: verbatim module syntax

This commit is contained in:
Linnea Gräf 2025-04-12 12:16:26 +02:00
parent eb34d34210
commit bdec64a050
No known key found for this signature in database
GPG key ID: AA563E93EB628D91
3 changed files with 20 additions and 25 deletions

View file

@ -1,20 +1,21 @@
{
"compilerOptions": {
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "node",
"skipLibCheck": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"allowImportingTsExtensions": true,
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"strict": true
},
"ts-node": {
"compilerOptions": {
"module": "ESNext"
}
},
"include": ["src/*"]
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "node",
"skipLibCheck": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"allowImportingTsExtensions": true,
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"verbatimModuleSyntax": true,
"strict": true
},
"ts-node": {
"compilerOptions": {
"module": "ESNext"
}
},
"include": ["src/*"]
}