retro/tsconfig.json

16 lines
357 B
JSON
Raw Normal View History

2024-12-26 21:15:05 +01:00
{
"include": ["./src/**/*.ts", "**/*.ts"],
2024-12-26 21:15:05 +01:00
"compilerOptions": {
"allowImportingTsExtensions": true,
"allowSyntheticDefaultImports": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"noImplicitAny": false,
"rootDir": ".",
"strict": true,
"noEmit": true,
2025-01-04 22:44:54 +01:00
"types": ["vite/client"],
2024-12-26 21:15:05 +01:00
}
}