mirror of
https://github.com/pezkuwichain/pezkuwi-telemetry.git
synced 2026-04-25 12:58:01 +00:00
28 lines
479 B
JSON
28 lines
479 B
JSON
{
|
|
"extends": "../../tsconfig",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"outDir": "build/dist",
|
|
"module": "esnext",
|
|
"lib": ["es6", "dom"],
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"jsx": "react",
|
|
"rootDir": "src"
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"build",
|
|
"scripts",
|
|
"acceptance-tests",
|
|
"webpack",
|
|
"jest",
|
|
"src/setupTests.ts"
|
|
],
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"./declarations/**/*.d.ts"
|
|
]
|
|
}
|