mathu/tsconfig.json

18 lines
361 B
JSON
Raw Normal View History

2024-04-19 04:21:19 +00:00
{
"compilerOptions": {
"target": "es2017",
"module": "es2022",
2024-04-22 19:52:11 -07:00
"lib": ["DOM"],
2024-04-19 04:21:19 +00:00
"moduleResolution": "node",
"jsx": "react-jsx",
"allowImportingTsExtensions": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"noEmit": true
},
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node",
}
}