Files
Momentum-Firmware/applications/system/js_app/packages/create-fz-app/template/tsconfig.json
MX 79caf7bf72 Add js sdk changes
With type declarations and various missing parts added by Willy-JL
2024-11-05 09:49:46 +03:00

21 lines
414 B
JSON

{
"compilerOptions": {
"outDir": "dist",
"checkJs": true,
"module": "CommonJS",
"noLib": true,
"target": "ES2015",
"types": [],
},
"files": [
"./node_modules/@darkflippers/fz-sdk-ul/global.d.ts",
],
"include": [
"./**/*.ts",
"./**/*.js",
],
"exclude": [
"./node_modules/**/*",
"dist/**/*",
],
}