forked from mytonwallet-org/mytonwallet
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 838 Bytes
/
tsconfig.json
File metadata and controls
25 lines (25 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"compilerOptions": {
// We don't care about this since Webpack runs Babel after TypeScript
"target": "esnext",
"lib": ["dom", "dom.iterable", "webworker", "es2021"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react"
},
"include": [
"src", "tests", "plugins", "webpack.config.ts", "webpack-electron.config.ts", "webpack-giveaways.config.ts",
"webpack-multisend.config.ts", "webpack-air.config.ts",
"webpack-push.config.ts", "capacitor.config.ts", "eslint.config.mjs", ".fantasticonrc.js"
],
"exclude": ["trash"]
}