vector-im-hydrogen-web/tsconfig.json

16 lines
329 B
JSON
Raw Normal View History

2021-08-06 21:59:18 +02:00
{
"compilerOptions": {
"strictNullChecks": true,
"noImplicitAny": false,
2021-08-06 21:59:18 +02:00
"noEmit": true,
2021-12-02 07:53:22 +01:00
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "node",
"esModuleInterop": true
2021-08-06 21:59:18 +02:00
},
"exclude": [
"src/sdk/paths/*"
],
2021-08-06 21:59:18 +02:00
"include": ["src/**/*"],
}