Use tsconfig file

This commit is contained in:
Greg Shuflin 2021-09-12 01:43:22 -07:00
parent 31e3113ca7
commit 0331062120
2 changed files with 5 additions and 1 deletions

View File

@ -10,7 +10,7 @@
"start": "parcel index.html",
"build": "parcel build index.html --no-source-maps",
"prebuild": "yarn run typecheck",
"typecheck": "tsc --noEmit src/saimiar_morphology.ts"
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@parcel/transformer-image": "2.0.0-rc.0",

4
tsconfig.json Normal file
View File

@ -0,0 +1,4 @@
{
"compilerOptions": {},
"include": ["src/**/*"]
}