2019-10-11 10:54:07 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": false,
|
2022-11-17 14:51:58 +03:00
|
|
|
"module": "es2020",
|
|
|
|
"target": "es2017",
|
|
|
|
"lib": ["esnext"],
|
|
|
|
"moduleResolution": "nodenext",
|
2019-10-11 10:54:07 +03:00
|
|
|
"declaration": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noUnusedParameters": true,
|
2020-11-06 06:13:43 +03:00
|
|
|
"strict": true,
|
2019-10-11 10:54:07 +03:00
|
|
|
"strictNullChecks": true,
|
2022-11-17 14:51:58 +03:00
|
|
|
"outDir": "dist/esm"
|
2019-10-11 10:54:07 +03:00
|
|
|
},
|
2020-11-06 06:13:43 +03:00
|
|
|
"include": [
|
2021-08-20 01:32:01 +03:00
|
|
|
"fsm.ts"
|
2019-10-11 10:54:07 +03:00
|
|
|
]
|
|
|
|
}
|