3
0
mirror of https://github.com/hodgef/simple-keyboard.git synced 2025-03-05 17:41:02 +08:00

19 lines
486 B
JSON
Raw Normal View History

2021-03-07 02:52:17 -05:00
{
"compilerOptions": {
"noImplicitAny": true,
2021-03-16 00:40:23 -04:00
"outDir": "build/types",
2021-03-07 02:52:17 -05:00
"module": "esnext",
"target": "es5",
"allowJs": true,
"sourceMap": true,
"declaration": true,
"emitDeclarationOnly": true,
"suppressImplicitAnyIndexErrors": true,
2021-03-16 00:40:23 -04:00
"lib": ["es2020", "dom"],
2021-03-07 02:52:17 -05:00
"moduleResolution": "node",
"downlevelIteration": true,
"strict": true
2021-03-07 02:52:17 -05:00
},
"include": ["src/lib"],
2021-03-16 00:40:23 -04:00
"exclude": ["src/lib/**/tests"],
2021-03-07 02:52:17 -05:00
}