Files
cinny/tsconfig.json
T

16 lines
308 B
JSON
Raw Normal View History

2022-12-20 20:47:51 +05:30
{
"compilerOptions": {
"sourceMap": true,
"jsx": "react",
2023-06-12 21:15:23 +10:00
"target": "ES2016",
2022-12-20 20:47:51 +05:30
"allowJs": true,
2023-06-12 21:15:23 +10:00
"strict": true,
2022-12-20 20:47:51 +05:30
"esModuleInterop": true,
"moduleResolution": "Node",
"outDir": "dist",
"skipLibCheck": true
},
"exclude": ["node_modules", "dist"],
"include": ["src"]
}