Files
Momentum-Firmware/applications/system/js_app/packages/create-fz-app/template/tsconfig.json
Anna Antonenko c741727b96 I am own the JS (#3982)
* fix: js app template
* i am own the js
* farewell
2024-11-05 19:53:24 +09:00

21 lines
413 B
JSON

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