organic_ast_explorer/tsconfig.json

18 lines
395 B
JSON
Raw Normal View History

2024-01-21 22:54:00 +00:00
{
"compilerOptions": {
"strict": true,
"outDir": "./dist/",
2024-01-21 23:30:20 +00:00
"module": "esnext",
2024-01-21 22:54:00 +00:00
"target": "es5",
"jsx": "react",
"allowJs": true,
"sourceMap": true,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
2024-01-22 02:11:38 +00:00
"allowSyntheticDefaultImports": true,
2024-01-21 22:54:00 +00:00
},
2024-01-22 02:11:38 +00:00
"include": ["src"],
2024-01-21 22:54:00 +00:00
}