Typescript: Add initial Typescript setup
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.
This commit is contained in:
parent
a4960c02ee
commit
c33cc6ef70
4 changed files with 3447 additions and 19575 deletions
12
tsconfig.json
Normal file
12
tsconfig.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"outDir": "./dist/",
|
||||
"noImplicitAny": true,
|
||||
"module": "es6",
|
||||
"target": "es5",
|
||||
"jsx": "react-jsx",
|
||||
"allowJs": true,
|
||||
"moduleResolution": "node",
|
||||
"strictNullChecks": true
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue