This commit adds the initial setup for using Typescript in our project. The tsconfig.json is very minimal at this point, we will introduce stricter rules as our Typescript migration progresses.
12 lines
231 B
JSON
12 lines
231 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"noImplicitAny": true,
|
|
"module": "es6",
|
|
"target": "es5",
|
|
"jsx": "react-jsx",
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"strictNullChecks": true
|
|
}
|
|
}
|