2020-02-05 02:27:46 +07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"outDir": "./out",
|
|
|
|
"allowJs": false,
|
|
|
|
"jsx": "react",
|
|
|
|
"declaration": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"tsBuildInfoFile": "./.tsbuildinfo",
|
|
|
|
"incremental": true,
|
|
|
|
"rootDir": "./src",
|
|
|
|
"typeRoots": ["./node_modules/@types", "./typings"]
|
|
|
|
},
|
2020-02-15 07:46:00 +07:00
|
|
|
"include": ["./src/**/*.ts", "./src/**/*.tsx"]
|
2020-02-05 02:27:46 +07:00
|
|
|
}
|