mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-13 04:09:25 +00:00
22 lines
550 B
JSON
22 lines
550 B
JSON
{
|
|
"extends": "../../../tsconfig-base.json",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"module": "es6",
|
|
"moduleResolution": "Node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"inlineSources": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"target": "es5",
|
|
"tsBuildInfoFile": "./build/tsconfig.tsbuildinfo",
|
|
"types": ["node"],
|
|
"lib": ["es6", "DOM"], // The latter is b/c esbuild expects the type.
|
|
"baseUrl": "./src",
|
|
"outDir": "./build/",
|
|
"rootDir": "./src"
|
|
},
|
|
"include": [
|
|
"./src/*.ts"
|
|
]
|
|
}
|