'init_again'
Change-Id: Ib7ecdb9f5baeab1e4681152a57b936edf7475b35
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..c2ea9bc
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,24 @@
+{
+ "compilerOptions": {
+ "types": ["node"],
+ "target": "esnext",
+ "module": "esnext",
+ "moduleResolution": "node",
+ "importHelpers": true,
+ "jsx": "preserve",
+ "esModuleInterop": true,
+ "sourceMap": true,
+ "baseUrl": "./",
+ "skipLibCheck": true,
+ "experimentalDecorators": true,
+ "strict": true,
+ "resolveJsonModule": true,
+ "allowSyntheticDefaultImports": true,
+ "paths": {
+ "@/*": ["./src/*"],
+ "@@/*": ["./src/.umi/*"],
+ "@@test/*": ["./src/.umi-test/*"]
+ }
+ },
+ "include": ["./**/*.d.ts", "./**/*.ts", "./**/*.tsx"]
+}