mirror of
https://github.com/zhigang1992/Recoil.git
synced 2026-06-14 01:55:39 +08:00
Summary: To run tests: ``` npm run test:typescript ``` fixes https://github.com/facebookexperimental/Recoil/issues/291 Pull Request resolved: https://github.com/facebookexperimental/Recoil/pull/292 Reviewed By: drarmstr Differential Revision: D21984265 Pulled By: csantos42 fbshipit-source-id: cbdf0a45a89951d53c0ff647d65fff8db54fbc5b
17 lines
379 B
JSON
17 lines
379 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": ["es6"],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"baseUrl": ".",
|
|
"paths": {"recoil": ["./index.d.ts"]}
|
|
},
|
|
"files": ["index.d.ts", "tests.ts"]
|
|
}
|