mirror of
https://github.com/remko/waforth
synced 2024-11-16 07:47:30 +01:00
16 lines
389 B
JSON
16 lines
389 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"noImplicitAny": true,
|
|
"strict": true,
|
|
"target": "es2015",
|
|
"jsx": "react",
|
|
"jsxFactory": "jsx.createElement",
|
|
"typeRoots": ["./src/web/types"],
|
|
"types": ["node"],
|
|
"baseUrl": "./src/web",
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": ["./src/web"],
|
|
"exclude": ["node_modules", "dist", "build"]
|
|
}
|