Files
MoodleGPT/tsconfig.json

21 lines
492 B
JSON

{
"compilerOptions": {
"strict": true,
"baseUrl": "src",
"module": "ESNext",
"moduleResolution": "Bundler",
"target": "ES6",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"sourceMap": true,
"outDir": "extension",
"types": ["node", "chrome"],
"typeRoots": ["node_modules/@types"],
"strictBindCallApply": true,
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"include": ["src/**/*"]
}