hydrogen-web/tsconfig.json

16 lines
329 B
JSON
Raw Normal View History

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