mirror of
https://github.com/geoffsee/open-gsio.git
synced 2025-09-08 22:56:46 +00:00
20 lines
331 B
JSON
20 lines
331 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"jsx": "react-jsx",
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"baseUrl": "src",
|
|
"noEmit": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|