diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000..fe099467 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,30 @@ +{ + "compilerOptions": { + "jsx": "react", + "sourceMap": true, + "moduleResolution": "node", + "target": "es5", + "allowSyntheticDefaultImports": true, + "noErrorTruncation": true, + "strict": true, + "rootDir": ".", + "skipLibCheck": true, + "lib": [ + "dom", + "esnext" + ], + "module": "esnext", + "esModuleInterop": true, + "resolveJsonModule": true, + "isolatedModules": true + }, + "include": [ + "./src/**/*.ts", + "./src/**/*.tsx" + ], + "exclude": [ + "./src/entry.ts", + "./*.js", + "./*.d.ts" + ] +}