1
0
Fork 0
VaultUI/tsconfig.json

15 lines
341 B
JSON
Raw Normal View History

{
"compilerOptions": {
"outDir": "./dist/",
2021-05-07 23:26:33 +01:00
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"module": "es6",
2021-05-08 03:28:37 +01:00
"target": "es2019",
2021-05-12 14:54:25 +01:00
"strictBindCallApply": true,
"noImplicitThis": true,
"allowJs": true,
2021-05-22 09:50:55 +01:00
"moduleResolution": "node",
"jsx": "react-jsx",
"jsxImportSource": "preact",
}
2022-01-07 15:55:15 +00:00
}