imnya.ng/tsconfig.json
2025-02-22 21:27:50 +09:00

19 lines
357 B
JSON

{
"compilerOptions": {
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"module": "preserve",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["**/*.ts", "**/*.tsx"]
}